| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/test/base/testing_browser_process.h" | 5 #include "chrome/test/base/testing_browser_process.h" |
| 6 | 6 |
| 7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
| 8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
| 9 #include "base/time/default_tick_clock.h" | 9 #include "base/time/default_tick_clock.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 } | 322 } |
| 323 | 323 |
| 324 DownloadStatusUpdater* TestingBrowserProcess::download_status_updater() { | 324 DownloadStatusUpdater* TestingBrowserProcess::download_status_updater() { |
| 325 return nullptr; | 325 return nullptr; |
| 326 } | 326 } |
| 327 | 327 |
| 328 DownloadRequestLimiter* TestingBrowserProcess::download_request_limiter() { | 328 DownloadRequestLimiter* TestingBrowserProcess::download_request_limiter() { |
| 329 return nullptr; | 329 return nullptr; |
| 330 } | 330 } |
| 331 | 331 |
| 332 ChromeNetLog* TestingBrowserProcess::net_log() { | 332 net_log::ChromeNetLog* TestingBrowserProcess::net_log() { |
| 333 return nullptr; | 333 return nullptr; |
| 334 } | 334 } |
| 335 | 335 |
| 336 component_updater::ComponentUpdateService* | 336 component_updater::ComponentUpdateService* |
| 337 TestingBrowserProcess::component_updater() { | 337 TestingBrowserProcess::component_updater() { |
| 338 return nullptr; | 338 return nullptr; |
| 339 } | 339 } |
| 340 | 340 |
| 341 CRLSetFetcher* TestingBrowserProcess::crl_set_fetcher() { | 341 CRLSetFetcher* TestingBrowserProcess::crl_set_fetcher() { |
| 342 return nullptr; | 342 return nullptr; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 | 454 |
| 455 /////////////////////////////////////////////////////////////////////////////// | 455 /////////////////////////////////////////////////////////////////////////////// |
| 456 | 456 |
| 457 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { | 457 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { |
| 458 TestingBrowserProcess::CreateInstance(); | 458 TestingBrowserProcess::CreateInstance(); |
| 459 } | 459 } |
| 460 | 460 |
| 461 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { | 461 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { |
| 462 TestingBrowserProcess::DeleteInstance(); | 462 TestingBrowserProcess::DeleteInstance(); |
| 463 } | 463 } |
| OLD | NEW |