| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 scoped_ptr<ExtensionHostDelegate> | 126 scoped_ptr<ExtensionHostDelegate> |
| 127 TestExtensionsBrowserClient::CreateExtensionHostDelegate() { | 127 TestExtensionsBrowserClient::CreateExtensionHostDelegate() { |
| 128 return scoped_ptr<ExtensionHostDelegate>(); | 128 return scoped_ptr<ExtensionHostDelegate>(); |
| 129 } | 129 } |
| 130 | 130 |
| 131 bool TestExtensionsBrowserClient::DidVersionUpdate(BrowserContext* context) { | 131 bool TestExtensionsBrowserClient::DidVersionUpdate(BrowserContext* context) { |
| 132 return false; | 132 return false; |
| 133 } | 133 } |
| 134 | 134 |
| 135 void TestExtensionsBrowserClient::PermitExternalProtocolHandler() { |
| 136 } |
| 137 |
| 135 scoped_ptr<AppSorting> TestExtensionsBrowserClient::CreateAppSorting() { | 138 scoped_ptr<AppSorting> TestExtensionsBrowserClient::CreateAppSorting() { |
| 136 return scoped_ptr<AppSorting>(); | 139 return scoped_ptr<AppSorting>(); |
| 137 } | 140 } |
| 138 | 141 |
| 139 bool TestExtensionsBrowserClient::IsRunningInForcedAppMode() { return false; } | 142 bool TestExtensionsBrowserClient::IsRunningInForcedAppMode() { return false; } |
| 140 | 143 |
| 141 ApiActivityMonitor* TestExtensionsBrowserClient::GetApiActivityMonitor( | 144 ApiActivityMonitor* TestExtensionsBrowserClient::GetApiActivityMonitor( |
| 142 BrowserContext* context) { | 145 BrowserContext* context) { |
| 143 return NULL; | 146 return NULL; |
| 144 } | 147 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 162 ComponentExtensionResourceManager* | 165 ComponentExtensionResourceManager* |
| 163 TestExtensionsBrowserClient::GetComponentExtensionResourceManager() { | 166 TestExtensionsBrowserClient::GetComponentExtensionResourceManager() { |
| 164 return NULL; | 167 return NULL; |
| 165 } | 168 } |
| 166 | 169 |
| 167 net::NetLog* TestExtensionsBrowserClient::GetNetLog() { | 170 net::NetLog* TestExtensionsBrowserClient::GetNetLog() { |
| 168 return NULL; | 171 return NULL; |
| 169 } | 172 } |
| 170 | 173 |
| 171 } // namespace extensions | 174 } // namespace extensions |
| OLD | NEW |