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

Side by Side Diff: chrome/browser/sync/profile_sync_components_factory_impl.cc

Issue 148083014: ExtensionSystem cleanup part 3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac Created 6 years, 10 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 | Annotate | Revision Log
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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "build/build_config.h" 6 #include "build/build_config.h"
7 #include "chrome/browser/about_flags.h" 7 #include "chrome/browser/about_flags.h"
8 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 8 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
9 #include "chrome/browser/bookmarks/enhanced_bookmarks_features.h" 9 #include "chrome/browser/bookmarks/enhanced_bookmarks_features.h"
10 #include "chrome/browser/browser_process.h" 10 #include "chrome/browser/browser_process.h"
11 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" 11 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h"
12 #include "chrome/browser/extensions/api/storage/settings_frontend.h" 12 #include "chrome/browser/extensions/api/storage/settings_frontend.h"
13 #include "chrome/browser/extensions/extension_service.h" 13 #include "chrome/browser/extensions/extension_service.h"
14 #include "chrome/browser/extensions/extension_sync_service.h" 14 #include "chrome/browser/extensions/extension_sync_service.h"
15 #include "chrome/browser/extensions/extension_system_factory.h"
16 #include "chrome/browser/history/history_service.h" 15 #include "chrome/browser/history/history_service.h"
17 #include "chrome/browser/history/history_service_factory.h" 16 #include "chrome/browser/history/history_service_factory.h"
18 #include "chrome/browser/pref_service_flags_storage.h" 17 #include "chrome/browser/pref_service_flags_storage.h"
19 #include "chrome/browser/prefs/pref_model_associator.h" 18 #include "chrome/browser/prefs/pref_model_associator.h"
20 #include "chrome/browser/prefs/pref_service_syncable.h" 19 #include "chrome/browser/prefs/pref_service_syncable.h"
21 #include "chrome/browser/profiles/profile.h" 20 #include "chrome/browser/profiles/profile.h"
22 #include "chrome/browser/search_engines/template_url_service.h" 21 #include "chrome/browser/search_engines/template_url_service.h"
23 #include "chrome/browser/search_engines/template_url_service_factory.h" 22 #include "chrome/browser/search_engines/template_url_service_factory.h"
24 #include "chrome/browser/signin/signin_manager.h" 23 #include "chrome/browser/signin/signin_manager.h"
25 #include "chrome/browser/signin/signin_manager_factory.h" 24 #include "chrome/browser/signin/signin_manager_factory.h"
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 ProfileSyncComponentsFactory::SyncComponents 598 ProfileSyncComponentsFactory::SyncComponents
600 ProfileSyncComponentsFactoryImpl::CreateSessionSyncComponents( 599 ProfileSyncComponentsFactoryImpl::CreateSessionSyncComponents(
601 ProfileSyncService* profile_sync_service, 600 ProfileSyncService* profile_sync_service,
602 DataTypeErrorHandler* error_handler) { 601 DataTypeErrorHandler* error_handler) {
603 SessionModelAssociator* model_associator = 602 SessionModelAssociator* model_associator =
604 new SessionModelAssociator(profile_sync_service, error_handler); 603 new SessionModelAssociator(profile_sync_service, error_handler);
605 SessionChangeProcessor* change_processor = 604 SessionChangeProcessor* change_processor =
606 new SessionChangeProcessor(error_handler, model_associator); 605 new SessionChangeProcessor(error_handler, model_associator);
607 return SyncComponents(model_associator, change_processor); 606 return SyncComponents(model_associator, change_processor);
608 } 607 }
OLDNEW
« no previous file with comments | « chrome/browser/speech/extension_api/tts_extension_api.cc ('k') | chrome/browser/sync/profile_sync_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698