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

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

Issue 983043003: Componentize FaviconService and FaviconHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@favicon_service
Patch Set: Fix android_aosp (reverted the change by mistake by switching computer) Created 5 years, 9 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/chrome_browser.gypi ('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_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/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/message_loop/message_loop_proxy.h" 10 #include "base/message_loop/message_loop_proxy.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/prefs/testing_pref_store.h" 12 #include "base/prefs/testing_pref_store.h"
13 #include "base/run_loop.h" 13 #include "base/run_loop.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "chrome/browser/autocomplete/autocomplete_classifier.h" 15 #include "chrome/browser/autocomplete/autocomplete_classifier.h"
16 #include "chrome/browser/autocomplete/in_memory_url_index.h" 16 #include "chrome/browser/autocomplete/in_memory_url_index.h"
17 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h" 17 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h"
18 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 18 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
19 #include "chrome/browser/bookmarks/chrome_bookmark_client.h" 19 #include "chrome/browser/bookmarks/chrome_bookmark_client.h"
20 #include "chrome/browser/bookmarks/chrome_bookmark_client_factory.h" 20 #include "chrome/browser/bookmarks/chrome_bookmark_client_factory.h"
21 #include "chrome/browser/browser_process.h" 21 #include "chrome/browser/browser_process.h"
22 #include "chrome/browser/chrome_notification_types.h" 22 #include "chrome/browser/chrome_notification_types.h"
23 #include "chrome/browser/favicon/chrome_favicon_client_factory.h" 23 #include "chrome/browser/favicon/chrome_favicon_client_factory.h"
24 #include "chrome/browser/favicon/favicon_service.h"
25 #include "chrome/browser/favicon/favicon_service_factory.h" 24 #include "chrome/browser/favicon/favicon_service_factory.h"
26 #include "chrome/browser/history/chrome_history_client.h" 25 #include "chrome/browser/history/chrome_history_client.h"
27 #include "chrome/browser/history/chrome_history_client_factory.h" 26 #include "chrome/browser/history/chrome_history_client_factory.h"
28 #include "chrome/browser/history/history_service_factory.h" 27 #include "chrome/browser/history/history_service_factory.h"
29 #include "chrome/browser/history/top_sites_factory.h" 28 #include "chrome/browser/history/top_sites_factory.h"
30 #include "chrome/browser/history/top_sites_impl.h" 29 #include "chrome/browser/history/top_sites_impl.h"
31 #include "chrome/browser/history/web_history_service_factory.h" 30 #include "chrome/browser/history/web_history_service_factory.h"
32 #include "chrome/browser/net/pref_proxy_config_tracker.h" 31 #include "chrome/browser/net/pref_proxy_config_tracker.h"
33 #include "chrome/browser/net/proxy_service_factory.h" 32 #include "chrome/browser/net/proxy_service_factory.h"
34 #include "chrome/browser/notifications/desktop_notification_service.h" 33 #include "chrome/browser/notifications/desktop_notification_service.h"
(...skipping 13 matching lines...) Expand all
48 #include "chrome/common/chrome_constants.h" 47 #include "chrome/common/chrome_constants.h"
49 #include "chrome/common/chrome_switches.h" 48 #include "chrome/common/chrome_switches.h"
50 #include "chrome/common/pref_names.h" 49 #include "chrome/common/pref_names.h"
51 #include "chrome/common/url_constants.h" 50 #include "chrome/common/url_constants.h"
52 #include "chrome/test/base/history_index_restore_observer.h" 51 #include "chrome/test/base/history_index_restore_observer.h"
53 #include "chrome/test/base/testing_pref_service_syncable.h" 52 #include "chrome/test/base/testing_pref_service_syncable.h"
54 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 53 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
55 #include "components/bookmarks/browser/bookmark_model.h" 54 #include "components/bookmarks/browser/bookmark_model.h"
56 #include "components/bookmarks/common/bookmark_constants.h" 55 #include "components/bookmarks/common/bookmark_constants.h"
57 #include "components/content_settings/core/browser/host_content_settings_map.h" 56 #include "components/content_settings/core/browser/host_content_settings_map.h"
57 #include "components/favicon/core/browser/favicon_service.h"
58 #include "components/history/content/browser/content_visit_delegate.h" 58 #include "components/history/content/browser/content_visit_delegate.h"
59 #include "components/history/content/browser/history_database_helper.h" 59 #include "components/history/content/browser/history_database_helper.h"
60 #include "components/history/core/browser/history_backend.h" 60 #include "components/history/core/browser/history_backend.h"
61 #include "components/history/core/browser/history_constants.h" 61 #include "components/history/core/browser/history_constants.h"
62 #include "components/history/core/browser/history_database_params.h" 62 #include "components/history/core/browser/history_database_params.h"
63 #include "components/history/core/browser/history_db_task.h" 63 #include "components/history/core/browser/history_db_task.h"
64 #include "components/history/core/browser/history_service.h" 64 #include "components/history/core/browser/history_service.h"
65 #include "components/history/core/browser/top_sites.h" 65 #include "components/history/core/browser/top_sites.h"
66 #include "components/history/core/browser/top_sites_observer.h" 66 #include "components/history/core/browser/top_sites_observer.h"
67 #include "components/keyed_service/content/browser_context_dependency_manager.h" 67 #include "components/keyed_service/content/browser_context_dependency_manager.h"
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 #if defined(ENABLE_EXTENSIONS) 1122 #if defined(ENABLE_EXTENSIONS)
1123 extension_policy_, 1123 extension_policy_,
1124 #endif 1124 #endif
1125 pref_service_.Pass(), 1125 pref_service_.Pass(),
1126 original_profile, 1126 original_profile,
1127 guest_session_, 1127 guest_session_,
1128 supervised_user_id_, 1128 supervised_user_id_,
1129 policy_service_.Pass(), 1129 policy_service_.Pass(),
1130 testing_factories_); 1130 testing_factories_);
1131 } 1131 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698