| 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 "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/message_loop/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 39 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 40 #include "chrome/browser/policy/profile_policy_connector.h" | 40 #include "chrome/browser/policy/profile_policy_connector.h" |
| 41 #include "chrome/browser/policy/profile_policy_connector_factory.h" | 41 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
| 42 #include "chrome/browser/prefs/browser_prefs.h" | 42 #include "chrome/browser/prefs/browser_prefs.h" |
| 43 #include "chrome/browser/prefs/pref_service_syncable.h" | 43 #include "chrome/browser/prefs/pref_service_syncable.h" |
| 44 #include "chrome/browser/prerender/prerender_manager.h" | 44 #include "chrome/browser/prerender/prerender_manager.h" |
| 45 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" | 45 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" |
| 46 #include "chrome/browser/profiles/profile_manager.h" | 46 #include "chrome/browser/profiles/profile_manager.h" |
| 47 #include "chrome/browser/profiles/storage_partition_descriptor.h" | 47 #include "chrome/browser/profiles/storage_partition_descriptor.h" |
| 48 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" | 48 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" |
| 49 #include "chrome/browser/webdata/web_data_service.h" | |
| 50 #include "chrome/browser/webdata/web_data_service_factory.h" | 49 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 51 #include "chrome/common/chrome_constants.h" | 50 #include "chrome/common/chrome_constants.h" |
| 52 #include "chrome/common/chrome_switches.h" | 51 #include "chrome/common/chrome_switches.h" |
| 53 #include "chrome/common/pref_names.h" | 52 #include "chrome/common/pref_names.h" |
| 54 #include "chrome/common/url_constants.h" | 53 #include "chrome/common/url_constants.h" |
| 55 #include "chrome/test/base/history_index_restore_observer.h" | 54 #include "chrome/test/base/history_index_restore_observer.h" |
| 56 #include "chrome/test/base/testing_pref_service_syncable.h" | 55 #include "chrome/test/base/testing_pref_service_syncable.h" |
| 57 #include "chrome/test/base/ui_test_utils.h" | 56 #include "chrome/test/base/ui_test_utils.h" |
| 58 #include "components/bookmarks/browser/bookmark_model.h" | 57 #include "components/bookmarks/browser/bookmark_model.h" |
| 59 #include "components/bookmarks/common/bookmark_constants.h" | 58 #include "components/bookmarks/common/bookmark_constants.h" |
| (...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 path_, | 953 path_, |
| 955 delegate_, | 954 delegate_, |
| 956 extension_policy_, | 955 extension_policy_, |
| 957 pref_service_.Pass(), | 956 pref_service_.Pass(), |
| 958 incognito_, | 957 incognito_, |
| 959 guest_session_, | 958 guest_session_, |
| 960 supervised_user_id_, | 959 supervised_user_id_, |
| 961 policy_service_.Pass(), | 960 policy_service_.Pass(), |
| 962 testing_factories_)); | 961 testing_factories_)); |
| 963 } | 962 } |
| OLD | NEW |