| 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 CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual void OnRenderViewCreatedForBackgroundPage(ExtensionHost* host) | 62 virtual void OnRenderViewCreatedForBackgroundPage(ExtensionHost* host) |
| 63 OVERRIDE; | 63 OVERRIDE; |
| 64 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; | 64 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; |
| 65 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; | 65 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; |
| 66 virtual bool IsRunningInForcedAppMode() OVERRIDE; | 66 virtual bool IsRunningInForcedAppMode() OVERRIDE; |
| 67 virtual content::JavaScriptDialogManager* GetJavaScriptDialogManager() | 67 virtual content::JavaScriptDialogManager* GetJavaScriptDialogManager() |
| 68 OVERRIDE; | 68 OVERRIDE; |
| 69 virtual ApiActivityMonitor* GetApiActivityMonitor( | 69 virtual ApiActivityMonitor* GetApiActivityMonitor( |
| 70 content::BrowserContext* context) OVERRIDE; | 70 content::BrowserContext* context) OVERRIDE; |
| 71 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; | 71 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; |
| 72 virtual void RegisterAdditionalExtensionFunctions( |
| 73 ExtensionFunctionRegistry* registry) const OVERRIDE; |
| 72 | 74 |
| 73 private: | 75 private: |
| 74 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsBrowserClient>; | 76 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsBrowserClient>; |
| 75 | 77 |
| 76 // Observer for Chrome-specific notifications. | 78 // Observer for Chrome-specific notifications. |
| 77 ChromeNotificationObserver notification_observer_; | 79 ChromeNotificationObserver notification_observer_; |
| 78 | 80 |
| 79 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); | 81 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); |
| 80 }; | 82 }; |
| 81 | 83 |
| 82 } // namespace extensions | 84 } // namespace extensions |
| 83 | 85 |
| 84 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 86 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
| OLD | NEW |