Bug 1883706: part 3) Implement `createHTML`, `createScript` and `createScriptURL...
[gecko.git] / browser / components / shell / nsWindowsShellService.h
blob8d7ebee66b5a53d5b9a888552bc6dfe5c1edb1cf
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nswindowsshellservice_h____
7 #define nswindowsshellservice_h____
9 #include "nscore.h"
10 #include "nsString.h"
11 #include "nsToolkitShellService.h"
12 #include "nsIShellService.h"
13 #include "nsIWindowsShellService.h"
15 #include <windows.h>
16 #include <ole2.h>
18 class nsWindowsShellService : public nsIShellService,
19 public nsToolkitShellService,
20 public nsIWindowsShellService {
21 virtual ~nsWindowsShellService();
23 public:
24 nsWindowsShellService();
26 NS_DECL_ISUPPORTS
27 NS_DECL_NSISHELLSERVICE
28 NS_DECL_NSIWINDOWSSHELLSERVICE
30 protected:
31 nsresult LaunchControlPanelDefaultsSelectionUI();
32 nsresult LaunchModernSettingsDialogDefaultApps();
35 #endif // nswindowsshellservice_h____