blob: 707f19aa67fa002c4783cce1d7d83a25b97a08de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsMIMEInfoChild_h
#define nsMIMEInfoChild_h
#include "nsMIMEInfoImpl.h"
/*
* A platform-generic nsMIMEInfo implementation to be used in child process
* generic code that needs a MIMEInfo with limited functionality.
*/
class nsChildProcessMIMEInfo : public nsMIMEInfoImpl {
public:
explicit nsChildProcessMIMEInfo(const char* aMIMEType = "")
: nsMIMEInfoImpl(aMIMEType) {}
explicit nsChildProcessMIMEInfo(const nsACString& aMIMEType)
: nsMIMEInfoImpl(aMIMEType) {}
nsChildProcessMIMEInfo(const nsACString& aType, HandlerClass aClass)
: nsMIMEInfoImpl(aType, aClass) {}
NS_IMETHOD LaunchWithFile(nsIFile* aFile) override {
return NS_ERROR_NOT_IMPLEMENTED;
};
NS_IMETHOD IsCurrentAppOSDefault(bool* _retval) override {
return NS_ERROR_NOT_IMPLEMENTED;
};
protected:
[[nodiscard]] virtual nsresult LoadUriInternal(nsIURI* aURI) override {
return NS_ERROR_NOT_IMPLEMENTED;
};
#ifdef DEBUG
[[nodiscard]] virtual nsresult LaunchDefaultWithFile(
nsIFile* aFile) override {
return NS_ERROR_UNEXPECTED;
}
#endif
[[nodiscard]] static nsresult OpenApplicationWithURI(nsIFile* aApplication,
const nsCString& aURI) {
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHOD GetDefaultDescription(nsAString& aDefaultDescription) override {
return NS_ERROR_NOT_IMPLEMENTED;
};
};
#endif
|