| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" |
| 9 #include "extensions/browser/extensions_browser_client.h" | 11 #include "extensions/browser/extensions_browser_client.h" |
| 10 | 12 |
| 11 class PrefService; | 13 class PrefService; |
| 12 | 14 |
| 13 namespace extensions { | 15 namespace extensions { |
| 14 | 16 |
| 15 class ExtensionsAPIClient; | 17 class ExtensionsAPIClient; |
| 16 | 18 |
| 17 // An ExtensionsBrowserClient that supports a single content::BrowserContent | 19 // An ExtensionsBrowserClient that supports a single content::BrowserContent |
| 18 // with no related incognito context. | 20 // with no related incognito context. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 106 |
| 105 // The extension cache used for download and installation. | 107 // The extension cache used for download and installation. |
| 106 scoped_ptr<ExtensionCache> extension_cache_; | 108 scoped_ptr<ExtensionCache> extension_cache_; |
| 107 | 109 |
| 108 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); | 110 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); |
| 109 }; | 111 }; |
| 110 | 112 |
| 111 } // namespace extensions | 113 } // namespace extensions |
| 112 | 114 |
| 113 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 115 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| OLD | NEW |