Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: chrome/test/base/testing_browser_process.cc

Issue 1347043002: Move ChromeNetLog to //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/base/testing_browser_process.h ('k') | components/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_browser_process.h ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698