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 class CommandLine; | 15 class CommandLine; |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 class BrowserContext; | 18 class BrowserContext; |
19 } | 19 } |
20 | 20 |
21 namespace extensions { | 21 namespace extensions { |
22 | 22 |
23 class ChromeExtensionsAPIClient; | |
24 | |
25 // Implementation of extensions::BrowserClient for Chrome, which includes | 23 // Implementation of extensions::BrowserClient for Chrome, which includes |
26 // knowledge of Profiles, BrowserContexts and incognito. | 24 // knowledge of Profiles, BrowserContexts and incognito. |
27 // | 25 // |
28 // NOTE: Methods that do not require knowledge of browser concepts should be | 26 // NOTE: Methods that do not require knowledge of browser concepts should be |
29 // implemented in ChromeExtensionsClient even if they are only used in the | 27 // implemented in ChromeExtensionsClient even if they are only used in the |
30 // browser process (see chrome/common/extensions/chrome_extensions_client.h). | 28 // browser process (see chrome/common/extensions/chrome_extensions_client.h). |
31 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { | 29 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { |
32 public: | 30 public: |
33 ChromeExtensionsBrowserClient(); | 31 ChromeExtensionsBrowserClient(); |
34 virtual ~ChromeExtensionsBrowserClient(); | 32 virtual ~ChromeExtensionsBrowserClient(); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 virtual ApiActivityMonitor* GetApiActivityMonitor( | 69 virtual ApiActivityMonitor* GetApiActivityMonitor( |
72 content::BrowserContext* context) OVERRIDE; | 70 content::BrowserContext* context) OVERRIDE; |
73 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; | 71 virtual ExtensionSystemProvider* GetExtensionSystemFactory() OVERRIDE; |
74 | 72 |
75 private: | 73 private: |
76 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsBrowserClient>; | 74 friend struct base::DefaultLazyInstanceTraits<ChromeExtensionsBrowserClient>; |
77 | 75 |
78 // Observer for Chrome-specific notifications. | 76 // Observer for Chrome-specific notifications. |
79 ChromeNotificationObserver notification_observer_; | 77 ChromeNotificationObserver notification_observer_; |
80 | 78 |
81 // Android builds chrome/browser/extensions but not c/b/extensions/api. | |
82 #if !defined(OS_ANDROID) | |
83 // Client for API implementations. | |
84 scoped_ptr<ChromeExtensionsAPIClient> api_client_; | |
85 #endif | |
86 | |
87 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); | 79 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); |
88 }; | 80 }; |
89 | 81 |
90 } // namespace extensions | 82 } // namespace extensions |
91 | 83 |
92 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 84 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
OLD | NEW |