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

Side by Side Diff: chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc

Issue 1419103009: [Sync] Componentize ProfileSyncService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@max_bogue_sync_backend_host
Patch Set: Rebase Created 5 years, 1 month 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/browser/autocomplete/chrome_autocomplete_provider_client.h" 5 #include "chrome/browser/autocomplete/chrome_autocomplete_provider_client.h"
6 6
7 #include "base/prefs/pref_service.h" 7 #include "base/prefs/pref_service.h"
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h" 9 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h"
10 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h" 10 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h"
11 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" 11 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h"
12 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h" 12 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h"
13 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service_factory.h" 13 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service_factory.h"
14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 14 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
15 #include "chrome/browser/chrome_notification_types.h" 15 #include "chrome/browser/chrome_notification_types.h"
16 #include "chrome/browser/history/history_service_factory.h" 16 #include "chrome/browser/history/history_service_factory.h"
17 #include "chrome/browser/history/top_sites_factory.h" 17 #include "chrome/browser/history/top_sites_factory.h"
18 #include "chrome/browser/profiles/profile.h" 18 #include "chrome/browser/profiles/profile.h"
19 #include "chrome/browser/search_engines/template_url_service_factory.h" 19 #include "chrome/browser/search_engines/template_url_service_factory.h"
20 #include "chrome/browser/sync/profile_sync_service.h"
21 #include "chrome/browser/sync/profile_sync_service_factory.h" 20 #include "chrome/browser/sync/profile_sync_service_factory.h"
22 #include "chrome/common/pref_names.h" 21 #include "chrome/common/pref_names.h"
23 #include "chrome/common/url_constants.h" 22 #include "chrome/common/url_constants.h"
24 #include "components/bookmarks/common/bookmark_pref_names.h" 23 #include "components/bookmarks/common/bookmark_pref_names.h"
24 #include "components/browser_sync/browser/profile_sync_service.h"
25 #include "components/history/core/browser/history_service.h" 25 #include "components/history/core/browser/history_service.h"
26 #include "components/omnibox/browser/autocomplete_classifier.h" 26 #include "components/omnibox/browser/autocomplete_classifier.h"
27 #include "components/sync_driver/sync_service_utils.h" 27 #include "components/sync_driver/sync_service_utils.h"
28 #include "content/public/browser/notification_service.h" 28 #include "content/public/browser/notification_service.h"
29 29
30 #if defined(ENABLE_EXTENSIONS) 30 #if defined(ENABLE_EXTENSIONS)
31 #include "chrome/browser/autocomplete/keyword_extensions_delegate_impl.h" 31 #include "chrome/browser/autocomplete/keyword_extensions_delegate_impl.h"
32 #endif 32 #endif
33 33
34 #if !defined(OS_ANDROID) 34 #if !defined(OS_ANDROID)
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 image_service->Prefetch(url); 236 image_service->Prefetch(url);
237 } 237 }
238 238
239 void ChromeAutocompleteProviderClient::OnAutocompleteControllerResultReady( 239 void ChromeAutocompleteProviderClient::OnAutocompleteControllerResultReady(
240 AutocompleteController* controller) { 240 AutocompleteController* controller) {
241 content::NotificationService::current()->Notify( 241 content::NotificationService::current()->Notify(
242 chrome::NOTIFICATION_AUTOCOMPLETE_CONTROLLER_RESULT_READY, 242 chrome::NOTIFICATION_AUTOCOMPLETE_CONTROLLER_RESULT_READY,
243 content::Source<AutocompleteController>(controller), 243 content::Source<AutocompleteController>(controller),
244 content::NotificationService::NoDetails()); 244 content::NotificationService::NoDetails());
245 } 245 }
OLDNEW
« no previous file with comments | « chrome/browser/app_controller_mac_unittest.mm ('k') | chrome/browser/autocomplete/search_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698