| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() | 66 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() |
| 67 OVERRIDE; | 67 OVERRIDE; |
| 68 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; | 68 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; |
| 69 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; | 69 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; |
| 70 virtual bool IsRunningInForcedAppMode() OVERRIDE; | 70 virtual bool IsRunningInForcedAppMode() OVERRIDE; |
| 71 virtual ApiActivityMonitor* GetApiActivityMonitor( | 71 virtual ApiActivityMonitor* GetApiActivityMonitor( |
| 72 content::BrowserContext* context) OVERRIDE; | 72 content::BrowserContext* context) OVERRIDE; |
| 73 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; | 73 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; |
| 74 virtual void RegisterExtensionFunctions( | 74 virtual void RegisterExtensionFunctions( |
| 75 ExtensionFunctionRegistry* registry) const OVERRIDE; | 75 ExtensionFunctionRegistry* registry) const OVERRIDE; |
| 76 virtual scoped_ptr<RuntimeAPIDelegate> CreateRuntimeAPIDelegate( |
| 77 content::BrowserContext* context) const OVERRIDE; |
| 76 | 78 |
| 77 private: | 79 private: |
| 78 // The single BrowserContext for app_shell. Not owned. | 80 // The single BrowserContext for app_shell. Not owned. |
| 79 content::BrowserContext* browser_context_; | 81 content::BrowserContext* browser_context_; |
| 80 | 82 |
| 81 // Support for extension APIs. | 83 // Support for extension APIs. |
| 82 scoped_ptr<ExtensionsAPIClient> api_client_; | 84 scoped_ptr<ExtensionsAPIClient> api_client_; |
| 83 | 85 |
| 84 // The PrefService for |browser_context_|. | 86 // The PrefService for |browser_context_|. |
| 85 scoped_ptr<PrefService> prefs_; | 87 scoped_ptr<PrefService> prefs_; |
| 86 | 88 |
| 87 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); | 89 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); |
| 88 }; | 90 }; |
| 89 | 91 |
| 90 } // namespace extensions | 92 } // namespace extensions |
| 91 | 93 |
| 92 #endif // APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 94 #endif // APPS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| OLD | NEW |