| 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_profile.h" | 5 #include "chrome/test/base/testing_profile.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "chrome/browser/extensions/extension_system_factory.h" | 25 #include "chrome/browser/extensions/extension_system_factory.h" |
| 26 #include "chrome/browser/extensions/test_extension_system.h" | 26 #include "chrome/browser/extensions/test_extension_system.h" |
| 27 #include "chrome/browser/favicon/favicon_service.h" | 27 #include "chrome/browser/favicon/favicon_service.h" |
| 28 #include "chrome/browser/favicon/favicon_service_factory.h" | 28 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 29 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" | 29 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" |
| 30 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto
ry.h" | 30 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto
ry.h" |
| 31 #include "chrome/browser/history/history_backend.h" | 31 #include "chrome/browser/history/history_backend.h" |
| 32 #include "chrome/browser/history/history_db_task.h" | 32 #include "chrome/browser/history/history_db_task.h" |
| 33 #include "chrome/browser/history/history_service.h" | 33 #include "chrome/browser/history/history_service.h" |
| 34 #include "chrome/browser/history/history_service_factory.h" | 34 #include "chrome/browser/history/history_service_factory.h" |
| 35 #include "chrome/browser/history/shortcuts_backend.h" | |
| 36 #include "chrome/browser/history/shortcuts_backend_factory.h" | |
| 37 #include "chrome/browser/history/top_sites.h" | 35 #include "chrome/browser/history/top_sites.h" |
| 38 #include "chrome/browser/history/web_history_service_factory.h" | 36 #include "chrome/browser/history/web_history_service_factory.h" |
| 39 #include "chrome/browser/net/pref_proxy_config_tracker.h" | 37 #include "chrome/browser/net/pref_proxy_config_tracker.h" |
| 40 #include "chrome/browser/net/proxy_service_factory.h" | 38 #include "chrome/browser/net/proxy_service_factory.h" |
| 41 #include "chrome/browser/notifications/desktop_notification_service.h" | 39 #include "chrome/browser/notifications/desktop_notification_service.h" |
| 42 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 40 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 43 #include "chrome/browser/policy/profile_policy_connector.h" | 41 #include "chrome/browser/policy/profile_policy_connector.h" |
| 44 #include "chrome/browser/policy/profile_policy_connector_factory.h" | 42 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
| 45 #include "chrome/browser/prefs/browser_prefs.h" | 43 #include "chrome/browser/prefs/browser_prefs.h" |
| 46 #include "chrome/browser/prefs/pref_service_syncable.h" | 44 #include "chrome/browser/prefs/pref_service_syncable.h" |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 path_, | 949 path_, |
| 952 delegate_, | 950 delegate_, |
| 953 extension_policy_, | 951 extension_policy_, |
| 954 pref_service_.Pass(), | 952 pref_service_.Pass(), |
| 955 incognito_, | 953 incognito_, |
| 956 guest_session_, | 954 guest_session_, |
| 957 managed_user_id_, | 955 managed_user_id_, |
| 958 policy_service_.Pass(), | 956 policy_service_.Pass(), |
| 959 testing_factories_)); | 957 testing_factories_)); |
| 960 } | 958 } |
| OLD | NEW |