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" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/extensions/chrome_notification_observer.h" | 12 #include "chrome/browser/extensions/chrome_notification_observer.h" |
13 #include "extensions/browser/extensions_browser_client.h" | 13 #include "extensions/browser/extensions_browser_client.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class CommandLine; | 16 class CommandLine; |
17 } | 17 } |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 class BrowserContext; | 20 class BrowserContext; |
21 } | 21 } |
22 | 22 |
23 namespace extensions { | 23 namespace extensions { |
24 | 24 |
25 class ChromeExtensionsAPIClient; | 25 class ChromeExtensionsAPIClient; |
| 26 class ContentSettingsPrefsObserver; |
26 | 27 |
27 // Implementation of extensions::BrowserClient for Chrome, which includes | 28 // Implementation of extensions::BrowserClient for Chrome, which includes |
28 // knowledge of Profiles, BrowserContexts and incognito. | 29 // knowledge of Profiles, BrowserContexts and incognito. |
29 // | 30 // |
30 // NOTE: Methods that do not require knowledge of browser concepts should be | 31 // NOTE: Methods that do not require knowledge of browser concepts should be |
31 // implemented in ChromeExtensionsClient even if they are only used in the | 32 // implemented in ChromeExtensionsClient even if they are only used in the |
32 // browser process (see chrome/common/extensions/chrome_extensions_client.h). | 33 // browser process (see chrome/common/extensions/chrome_extensions_client.h). |
33 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { | 34 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { |
34 public: | 35 public: |
35 ChromeExtensionsBrowserClient(); | 36 ChromeExtensionsBrowserClient(); |
(...skipping 14 matching lines...) Expand all Loading... |
50 content::BrowserContext* context) OVERRIDE; | 51 content::BrowserContext* context) OVERRIDE; |
51 virtual bool IsGuestSession(content::BrowserContext* context) const OVERRIDE; | 52 virtual bool IsGuestSession(content::BrowserContext* context) const OVERRIDE; |
52 virtual bool IsExtensionIncognitoEnabled( | 53 virtual bool IsExtensionIncognitoEnabled( |
53 const std::string& extension_id, | 54 const std::string& extension_id, |
54 content::BrowserContext* context) const OVERRIDE; | 55 content::BrowserContext* context) const OVERRIDE; |
55 virtual bool CanExtensionCrossIncognito( | 56 virtual bool CanExtensionCrossIncognito( |
56 const extensions::Extension* extension, | 57 const extensions::Extension* extension, |
57 content::BrowserContext* context) const OVERRIDE; | 58 content::BrowserContext* context) const OVERRIDE; |
58 virtual PrefService* GetPrefServiceForContext( | 59 virtual PrefService* GetPrefServiceForContext( |
59 content::BrowserContext* context) OVERRIDE; | 60 content::BrowserContext* context) OVERRIDE; |
| 61 virtual void GetEarlyExtensionPrefsObservers( |
| 62 content::BrowserContext* context, |
| 63 std::vector<ExtensionPrefsObserver*>* observers) const OVERRIDE; |
60 virtual bool DeferLoadingBackgroundHosts( | 64 virtual bool DeferLoadingBackgroundHosts( |
61 content::BrowserContext* context) const OVERRIDE; | 65 content::BrowserContext* context) const OVERRIDE; |
62 virtual bool IsBackgroundPageAllowed( | 66 virtual bool IsBackgroundPageAllowed( |
63 content::BrowserContext* context) const OVERRIDE; | 67 content::BrowserContext* context) const OVERRIDE; |
64 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() | 68 virtual scoped_ptr<ExtensionHostDelegate> CreateExtensionHostDelegate() |
65 OVERRIDE; | 69 OVERRIDE; |
66 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; | 70 virtual bool DidVersionUpdate(content::BrowserContext* context) OVERRIDE; |
67 virtual void PermitExternalProtocolHandler() OVERRIDE; | 71 virtual void PermitExternalProtocolHandler() OVERRIDE; |
68 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; | 72 virtual scoped_ptr<AppSorting> CreateAppSorting() OVERRIDE; |
69 virtual bool IsRunningInForcedAppMode() OVERRIDE; | 73 virtual bool IsRunningInForcedAppMode() OVERRIDE; |
(...skipping 13 matching lines...) Expand all Loading... |
83 // Client for API implementations. | 87 // Client for API implementations. |
84 scoped_ptr<ChromeExtensionsAPIClient> api_client_; | 88 scoped_ptr<ChromeExtensionsAPIClient> api_client_; |
85 #endif | 89 #endif |
86 | 90 |
87 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); | 91 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); |
88 }; | 92 }; |
89 | 93 |
90 } // namespace extensions | 94 } // namespace extensions |
91 | 95 |
92 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 96 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
OLD | NEW |