| 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 <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 class BrowserContext; | 25 class BrowserContext; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace extensions { | 28 namespace extensions { |
| 29 | 29 |
| 30 class ChromeComponentExtensionResourceManager; | 30 class ChromeComponentExtensionResourceManager; |
| 31 class ChromeExtensionsAPIClient; | 31 class ChromeExtensionsAPIClient; |
| 32 class ChromeProcessManagerDelegate; | 32 class ChromeProcessManagerDelegate; |
| 33 class ContentSettingsPrefsObserver; | |
| 34 | 33 |
| 35 // Implementation of BrowserClient for Chrome, which includes | 34 // Implementation of BrowserClient for Chrome, which includes |
| 36 // knowledge of Profiles, BrowserContexts and incognito. | 35 // knowledge of Profiles, BrowserContexts and incognito. |
| 37 // | 36 // |
| 38 // NOTE: Methods that do not require knowledge of browser concepts should be | 37 // NOTE: Methods that do not require knowledge of browser concepts should be |
| 39 // implemented in ChromeExtensionsClient even if they are only used in the | 38 // implemented in ChromeExtensionsClient even if they are only used in the |
| 40 // browser process (see chrome/common/extensions/chrome_extensions_client.h). | 39 // browser process (see chrome/common/extensions/chrome_extensions_client.h). |
| 41 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { | 40 class ChromeExtensionsBrowserClient : public ExtensionsBrowserClient { |
| 42 public: | 41 public: |
| 43 ChromeExtensionsBrowserClient(); | 42 ChromeExtensionsBrowserClient(); |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 std::unique_ptr<ExtensionCache> extension_cache_; | 139 std::unique_ptr<ExtensionCache> extension_cache_; |
| 141 | 140 |
| 142 std::unique_ptr<KioskDelegate> kiosk_delegate_; | 141 std::unique_ptr<KioskDelegate> kiosk_delegate_; |
| 143 | 142 |
| 144 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); | 143 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsBrowserClient); |
| 145 }; | 144 }; |
| 146 | 145 |
| 147 } // namespace extensions | 146 } // namespace extensions |
| 148 | 147 |
| 149 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ | 148 #endif // CHROME_BROWSER_EXTENSIONS_CHROME_EXTENSIONS_BROWSER_CLIENT_H_ |
| OLD | NEW |