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 #include "extensions/shell/browser/shell_extensions_browser_client.h" | 5 #include "extensions/shell/browser/shell_extensions_browser_client.h" |
6 | 6 |
7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
8 #include "base/prefs/pref_service_factory.h" | 8 #include "base/prefs/pref_service_factory.h" |
9 #include "base/prefs/testing_pref_store.h" | 9 #include "base/prefs/testing_pref_store.h" |
10 #include "components/pref_registry/pref_registry_syncable.h" | 10 #include "components/pref_registry/pref_registry_syncable.h" |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 } | 219 } |
220 | 220 |
221 net::NetLog* ShellExtensionsBrowserClient::GetNetLog() { | 221 net::NetLog* ShellExtensionsBrowserClient::GetNetLog() { |
222 return NULL; | 222 return NULL; |
223 } | 223 } |
224 | 224 |
225 ExtensionCache* ShellExtensionsBrowserClient::GetExtensionCache() { | 225 ExtensionCache* ShellExtensionsBrowserClient::GetExtensionCache() { |
226 return extension_cache_.get(); | 226 return extension_cache_.get(); |
227 } | 227 } |
228 | 228 |
| 229 bool ShellExtensionsBrowserClient::IsBackgroundUpdateAllowed() { |
| 230 return true; |
| 231 } |
| 232 |
| 233 bool ShellExtensionsBrowserClient::IsMinBrowserVersionSupported( |
| 234 const std::string& min_version) { |
| 235 return true; |
| 236 } |
| 237 |
229 } // namespace extensions | 238 } // namespace extensions |
OLD | NEW |