| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 ShellExtensionsBrowserClient::CreateRuntimeAPIDelegate( | 232 ShellExtensionsBrowserClient::CreateRuntimeAPIDelegate( |
| 233 content::BrowserContext* context) const { | 233 content::BrowserContext* context) const { |
| 234 return scoped_ptr<RuntimeAPIDelegate>(new ShellRuntimeAPIDelegate()); | 234 return scoped_ptr<RuntimeAPIDelegate>(new ShellRuntimeAPIDelegate()); |
| 235 } | 235 } |
| 236 | 236 |
| 237 ComponentExtensionResourceManager* | 237 ComponentExtensionResourceManager* |
| 238 ShellExtensionsBrowserClient::GetComponentExtensionResourceManager() { | 238 ShellExtensionsBrowserClient::GetComponentExtensionResourceManager() { |
| 239 return NULL; | 239 return NULL; |
| 240 } | 240 } |
| 241 | 241 |
| 242 net::NetLog* ShellExtensionsBrowserClient::GetNetLog() { |
| 243 return NULL; |
| 244 } |
| 245 |
| 242 } // namespace extensions | 246 } // namespace extensions |
| OLD | NEW |