OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 5 #ifndef APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
6 #define APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 6 #define APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "extensions/browser/extensions_browser_client.h" | 9 #include "extensions/browser/extensions_browser_client.h" |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 content::BrowserContext* context) const OVERRIDE; | 44 content::BrowserContext* context) const OVERRIDE; |
45 virtual PrefService* GetPrefServiceForContext( | 45 virtual PrefService* GetPrefServiceForContext( |
46 content::BrowserContext* context) OVERRIDE; | 46 content::BrowserContext* context) OVERRIDE; |
47 virtual bool DeferLoadingBackgroundHosts(content::BrowserContext* context) | 47 virtual bool DeferLoadingBackgroundHosts(content::BrowserContext* context) |
48 const OVERRIDE; | 48 const OVERRIDE; |
49 virtual bool IsBackgroundPageAllowed(content::BrowserContext* context) | 49 virtual bool IsBackgroundPageAllowed(content::BrowserContext* context) |
50 const OVERRIDE; | 50 const OVERRIDE; |
51 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() | 51 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() |
52 OVERRIDE; | 52 OVERRIDE; |
53 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; | 53 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; |
54 virtual void PermitExternalProtocolHandler() OVERRIDE; | |
55 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; | 54 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; |
56 virtual bool IsRunningInForcedAppMode() OVERRIDE; | 55 virtual bool IsRunningInForcedAppMode() OVERRIDE; |
57 virtual ApiActivityMonitor* GetApiActivityMonitor( | 56 virtual ApiActivityMonitor* GetApiActivityMonitor( |
58 content::BrowserContext* context) OVERRIDE; | 57 content::BrowserContext* context) OVERRIDE; |
59 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; | 58 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; |
60 virtual void RegisterExtensionFunctions( | 59 virtual void RegisterExtensionFunctions( |
61 ExtensionFunctionRegistry* registry) const OVERRIDE; | 60 ExtensionFunctionRegistry* registry) const OVERRIDE; |
62 | 61 |
63 private: | 62 private: |
64 // The single BrowserContext for app_shell. Not owned. | 63 // The single BrowserContext for app_shell. Not owned. |
65 content::BrowserContext* browser_context_; | 64 content::BrowserContext* browser_context_; |
66 | 65 |
67 // Support for extension APIs. | 66 // Support for extension APIs. |
68 scoped_ptr<ExtensionsAPIClient> api_client_; | 67 scoped_ptr<ExtensionsAPIClient> api_client_; |
69 | 68 |
70 // The PrefService for |browser_context_|. | 69 // The PrefService for |browser_context_|. |
71 scoped_ptr<PrefService> prefs_; | 70 scoped_ptr<PrefService> prefs_; |
72 | 71 |
73 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); | 72 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); |
74 }; | 73 }; |
75 | 74 |
76 } // namespace extensions | 75 } // namespace extensions |
77 | 76 |
78 #endif // APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 77 #endif // APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
OLD | NEW |