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

Side by Side Diff: components/sync_driver/sync_api_component_factory.h

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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
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 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ 5 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_
6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ 6 #define COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "sync/api/attachments/attachment_service.h" 10 #include "sync/api/attachments/attachment_service.h"
11 #include "sync/api/syncable_service.h" 11 #include "sync/api/syncable_service.h"
12 #include "sync/internal_api/public/base/model_type.h" 12 #include "sync/internal_api/public/base/model_type.h"
13 13
14 namespace browser_sync { 14 namespace sync_driver {
15 15
16 // This factory provides sync driver code with the model type specific sync/api 16 // This factory provides sync driver code with the model type specific sync/api
17 // service (like SyncableService) implementations. 17 // service (like SyncableService) implementations.
18 class SyncApiComponentFactory { 18 class SyncApiComponentFactory {
19 public: 19 public:
20 virtual ~SyncApiComponentFactory() {} 20 virtual ~SyncApiComponentFactory() {}
21 21
22 // Returns a weak pointer to the syncable service specified by |type|. 22 // Returns a weak pointer to the syncable service specified by |type|.
23 // Weak pointer may be unset if service is already destroyed. 23 // Weak pointer may be unset if service is already destroyed.
24 // Note: Should only be called from the model type thread. 24 // Note: Should only be called from the model type thread.
25 virtual base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType( 25 virtual base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType(
26 syncer::ModelType type) = 0; 26 syncer::ModelType type) = 0;
27 27
28 // Creates attachment service. 28 // Creates attachment service.
29 // Note: Should only be called from the model type thread. 29 // Note: Should only be called from the model type thread.
30 // |delegate| is optional delegate for AttachmentService to notify about 30 // |delegate| is optional delegate for AttachmentService to notify about
31 // asynchronous events (AttachmentUploaded). Pass NULL if delegate is not 31 // asynchronous events (AttachmentUploaded). Pass NULL if delegate is not
32 // provided. AttachmentService doesn't take ownership of delegate, the pointer 32 // provided. AttachmentService doesn't take ownership of delegate, the pointer
33 // must be valid throughout AttachmentService lifetime. 33 // must be valid throughout AttachmentService lifetime.
34 virtual scoped_ptr<syncer::AttachmentService> CreateAttachmentService( 34 virtual scoped_ptr<syncer::AttachmentService> CreateAttachmentService(
35 const syncer::UserShare& user_share, 35 const syncer::UserShare& user_share,
36 syncer::AttachmentService::Delegate* delegate) = 0; 36 syncer::AttachmentService::Delegate* delegate) = 0;
37 }; 37 };
38 38
39 } // namespace browser_sync 39 } // namespace sync_driver
40 40
41 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_ 41 #endif // COMPONENTS_SYNC_DRIVER_SYNC_API_COMPONENT_FACTORY_H_
OLDNEW
« no previous file with comments | « components/sync_driver/shared_change_processor_unittest.cc ('k') | components/sync_driver/sync_frontend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698