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" |
11 #include "chrome/browser/apps/chrome_apps_client.h" | |
12 #include "chrome/browser/background/background_mode_manager.h" | 11 #include "chrome/browser/background/background_mode_manager.h" |
13 #include "chrome/browser/browser_process.h" | 12 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/browser_process_impl.h" | 13 #include "chrome/browser/browser_process_impl.h" |
15 #include "chrome/browser/extensions/chrome_extensions_browser_client.h" | 14 #include "chrome/browser/extensions/chrome_extensions_browser_client.h" |
16 #include "chrome/browser/printing/print_job_manager.h" | 15 #include "chrome/browser/printing/print_job_manager.h" |
17 #include "chrome/browser/profiles/profile_manager.h" | 16 #include "chrome/browser/profiles/profile_manager.h" |
| 17 #include "chrome/browser/ui/apps/chrome_apps_client.h" |
18 #include "chrome/test/base/testing_browser_process_platform_part.h" | 18 #include "chrome/test/base/testing_browser_process_platform_part.h" |
19 #include "components/network_time/network_time_tracker.h" | 19 #include "components/network_time/network_time_tracker.h" |
20 #include "content/public/browser/notification_service.h" | 20 #include "content/public/browser/notification_service.h" |
21 #include "net/url_request/url_request_context_getter.h" | 21 #include "net/url_request/url_request_context_getter.h" |
22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
23 #include "ui/message_center/message_center.h" | 23 #include "ui/message_center/message_center.h" |
24 | 24 |
25 #if !defined(OS_IOS) | 25 #if !defined(OS_IOS) |
26 #include "chrome/browser/notifications/notification_ui_manager.h" | 26 #include "chrome/browser/notifications/notification_ui_manager.h" |
27 #include "chrome/browser/prerender/prerender_tracker.h" | 27 #include "chrome/browser/prerender/prerender_tracker.h" |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 | 436 |
437 /////////////////////////////////////////////////////////////////////////////// | 437 /////////////////////////////////////////////////////////////////////////////// |
438 | 438 |
439 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { | 439 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { |
440 TestingBrowserProcess::CreateInstance(); | 440 TestingBrowserProcess::CreateInstance(); |
441 } | 441 } |
442 | 442 |
443 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { | 443 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { |
444 TestingBrowserProcess::DeleteInstance(); | 444 TestingBrowserProcess::DeleteInstance(); |
445 } | 445 } |
OLD | NEW |