| 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/browser/test_extensions_browser_client.h" | 5 #include "extensions/browser/test_extensions_browser_client.h" |
| 6 | 6 |
| 7 #include "content/public/browser/browser_context.h" | 7 #include "content/public/browser/browser_context.h" |
| 8 #include "extensions/browser/app_sorting.h" | 8 #include "extensions/browser/app_sorting.h" |
| 9 #include "extensions/browser/extension_host_delegate.h" | 9 #include "extensions/browser/extension_host_delegate.h" |
| 10 #include "extensions/browser/test_runtime_api_delegate.h" | 10 #include "extensions/browser/test_runtime_api_delegate.h" |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 TestExtensionsBrowserClient::CreateRuntimeAPIDelegate( | 159 TestExtensionsBrowserClient::CreateRuntimeAPIDelegate( |
| 160 content::BrowserContext* context) const { | 160 content::BrowserContext* context) const { |
| 161 return scoped_ptr<RuntimeAPIDelegate>(new TestRuntimeAPIDelegate()); | 161 return scoped_ptr<RuntimeAPIDelegate>(new TestRuntimeAPIDelegate()); |
| 162 } | 162 } |
| 163 | 163 |
| 164 ComponentExtensionResourceManager* | 164 ComponentExtensionResourceManager* |
| 165 TestExtensionsBrowserClient::GetComponentExtensionResourceManager() { | 165 TestExtensionsBrowserClient::GetComponentExtensionResourceManager() { |
| 166 return NULL; | 166 return NULL; |
| 167 } | 167 } |
| 168 | 168 |
| 169 void TestExtensionsBrowserClient::BroadcastEventToRenderers( |
| 170 const std::string& event_name, |
| 171 scoped_ptr<base::ListValue> args) { |
| 172 } |
| 173 |
| 169 net::NetLog* TestExtensionsBrowserClient::GetNetLog() { | 174 net::NetLog* TestExtensionsBrowserClient::GetNetLog() { |
| 170 return NULL; | 175 return NULL; |
| 171 } | 176 } |
| 172 | 177 |
| 173 } // namespace extensions | 178 } // namespace extensions |
| OLD | NEW |