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

Side by Side Diff: sync/internal_api/internal_components_factory_impl.cc

Issue 10795018: [Sync] Remove unneeded 'using syncer::' lines and 'syncer::' scopings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fiix indent Created 8 years, 5 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
« no previous file with comments | « sync/internal_api/http_bridge.cc ('k') | sync/internal_api/js_mutation_event_observer.h » ('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 "sync/internal_api/public/internal_components_factory_impl.h" 5 #include "sync/internal_api/public/internal_components_factory_impl.h"
6 6
7 #include "sync/engine/syncer.h" 7 #include "sync/engine/syncer.h"
8 #include "sync/engine/sync_scheduler_impl.h" 8 #include "sync/engine/sync_scheduler_impl.h"
9 #include "sync/sessions/sync_session_context.h" 9 #include "sync/sessions/sync_session_context.h"
10 #include "sync/syncable/on_disk_directory_backing_store.h" 10 #include "sync/syncable/on_disk_directory_backing_store.h"
(...skipping 12 matching lines...) Expand all
23 scoped_ptr<sessions::SyncSessionContext> 23 scoped_ptr<sessions::SyncSessionContext>
24 InternalComponentsFactoryImpl::BuildContext( 24 InternalComponentsFactoryImpl::BuildContext(
25 ServerConnectionManager* connection_manager, 25 ServerConnectionManager* connection_manager,
26 syncable::Directory* directory, 26 syncable::Directory* directory,
27 const ModelSafeRoutingInfo& routing_info, 27 const ModelSafeRoutingInfo& routing_info,
28 const std::vector<ModelSafeWorker*> workers, 28 const std::vector<ModelSafeWorker*> workers,
29 ExtensionsActivityMonitor* monitor, 29 ExtensionsActivityMonitor* monitor,
30 ThrottledDataTypeTracker* throttled_data_type_tracker, 30 ThrottledDataTypeTracker* throttled_data_type_tracker,
31 const std::vector<SyncEngineEventListener*>& listeners, 31 const std::vector<SyncEngineEventListener*>& listeners,
32 sessions::DebugInfoGetter* debug_info_getter, 32 sessions::DebugInfoGetter* debug_info_getter,
33 syncer::TrafficRecorder* traffic_recorder) { 33 TrafficRecorder* traffic_recorder) {
34 return scoped_ptr<sessions::SyncSessionContext>( 34 return scoped_ptr<sessions::SyncSessionContext>(
35 new sessions::SyncSessionContext(connection_manager, directory, 35 new sessions::SyncSessionContext(connection_manager, directory,
36 routing_info, workers, monitor, throttled_data_type_tracker, 36 routing_info, workers, monitor, throttled_data_type_tracker,
37 listeners, debug_info_getter, traffic_recorder)); 37 listeners, debug_info_getter, traffic_recorder));
38 } 38 }
39 39
40 scoped_ptr<syncable::DirectoryBackingStore> 40 scoped_ptr<syncable::DirectoryBackingStore>
41 InternalComponentsFactoryImpl::BuildDirectoryBackingStore( 41 InternalComponentsFactoryImpl::BuildDirectoryBackingStore(
42 const std::string& dir_name, const FilePath& backing_filepath) { 42 const std::string& dir_name, const FilePath& backing_filepath) {
43 return scoped_ptr<syncable::DirectoryBackingStore>( 43 return scoped_ptr<syncable::DirectoryBackingStore>(
44 new syncable::OnDiskDirectoryBackingStore(dir_name, backing_filepath)); 44 new syncable::OnDiskDirectoryBackingStore(dir_name, backing_filepath));
45 } 45 }
46 46
47 } // namespace syncer 47 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/http_bridge.cc ('k') | sync/internal_api/js_mutation_event_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698