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

Side by Side Diff: sync/internal_api/public/internal_components_factory.h

Issue 10804039: Make SyncBackendRegistrar aware of loaded data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 4 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 // InternalComponentsFactory exists so that tests can override creation of 5 // InternalComponentsFactory exists so that tests can override creation of
6 // components used by the SyncManager that are not exposed across the sync 6 // components used by the SyncManager that are not exposed across the sync
7 // API boundary. 7 // API boundary.
8 8
9 #ifndef SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_ 9 #ifndef SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_
10 #define SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_ 10 #define SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_
(...skipping 28 matching lines...) Expand all
39 public: 39 public:
40 virtual ~InternalComponentsFactory() {} 40 virtual ~InternalComponentsFactory() {}
41 41
42 virtual scoped_ptr<SyncScheduler> BuildScheduler( 42 virtual scoped_ptr<SyncScheduler> BuildScheduler(
43 const std::string& name, 43 const std::string& name,
44 sessions::SyncSessionContext* context) = 0; 44 sessions::SyncSessionContext* context) = 0;
45 45
46 virtual scoped_ptr<sessions::SyncSessionContext> BuildContext( 46 virtual scoped_ptr<sessions::SyncSessionContext> BuildContext(
47 ServerConnectionManager* connection_manager, 47 ServerConnectionManager* connection_manager,
48 syncable::Directory* directory, 48 syncable::Directory* directory,
49 const ModelSafeRoutingInfo& routing_info,
50 const std::vector<ModelSafeWorker*> workers, 49 const std::vector<ModelSafeWorker*> workers,
51 ExtensionsActivityMonitor* monitor, 50 ExtensionsActivityMonitor* monitor,
52 ThrottledDataTypeTracker* throttled_data_type_tracker, 51 ThrottledDataTypeTracker* throttled_data_type_tracker,
53 const std::vector<SyncEngineEventListener*>& listeners, 52 const std::vector<SyncEngineEventListener*>& listeners,
54 sessions::DebugInfoGetter* debug_info_getter, 53 sessions::DebugInfoGetter* debug_info_getter,
55 TrafficRecorder* traffic_recorder) = 0; 54 TrafficRecorder* traffic_recorder) = 0;
56 55
57 virtual scoped_ptr<syncable::DirectoryBackingStore> 56 virtual scoped_ptr<syncable::DirectoryBackingStore>
58 BuildDirectoryBackingStore( 57 BuildDirectoryBackingStore(
59 const std::string& dir_name, 58 const std::string& dir_name,
60 const FilePath& backing_filepath) = 0; 59 const FilePath& backing_filepath) = 0;
61 }; 60 };
62 61
63 } // namespace syncer 62 } // namespace syncer
64 63
65 #endif // SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_ 64 #endif // SYNC_INTERNAL_API_PUBLIC_INTERNAL_COMPONENTS_FACTORY_H_
OLDNEW
« no previous file with comments | « sync/internal_api/js_sync_manager_observer_unittest.cc ('k') | sync/internal_api/public/internal_components_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698