HomeSort by relevance Sort by last modified time
    Searched refs:SyncContextProxy (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/sync/internal_api/
sync_context_proxy.cc 9 SyncContextProxy::SyncContextProxy() {
12 SyncContextProxy::~SyncContextProxy() {
sync_context_proxy_impl.h 26 class SYNC_EXPORT_PRIVATE SyncContextProxyImpl : public SyncContextProxy {
49 virtual scoped_ptr<SyncContextProxy> Clone() const OVERRIDE;
sync_context_proxy_impl.cc 47 scoped_ptr<SyncContextProxy> SyncContextProxyImpl::Clone() const {
48 return scoped_ptr<SyncContextProxy>(
sync_context_proxy_impl_unittest.cc 44 scoped_ptr<SyncContextProxy> GetProxy() { return context_proxy_->Clone(); }
sync_manager_impl.h 98 virtual syncer::SyncContextProxy* GetSyncContextProxy() OVERRIDE;
295 scoped_ptr<SyncContextProxy> sync_context_proxy_;
sync_rollback_manager_base.h 70 virtual SyncContextProxy* GetSyncContextProxy() OVERRIDE;
  /external/chromium_org/sync/internal_api/public/
sync_context_proxy.h 20 class SYNC_EXPORT_PRIVATE SyncContextProxy {
22 SyncContextProxy();
23 virtual ~SyncContextProxy();
41 // Creates a clone of this SyncContextProxy.
42 virtual scoped_ptr<SyncContextProxy> Clone() const = 0;
sync_manager.h 55 class SyncContextProxy;
358 virtual syncer::SyncContextProxy* GetSyncContextProxy() = 0;
  /external/chromium_org/sync/internal_api/public/test/
null_sync_context_proxy.h 16 // A non-functional implementation of SyncContextProxy.
19 class NullSyncContextProxy : public SyncContextProxy {
30 virtual scoped_ptr<SyncContextProxy> Clone() const OVERRIDE;
fake_sync_manager.h 103 virtual syncer::SyncContextProxy* GetSyncContextProxy() OVERRIDE;
  /external/chromium_org/sync/internal_api/test/
null_sync_context_proxy.cc 27 scoped_ptr<SyncContextProxy> NullSyncContextProxy::Clone() const {
28 return scoped_ptr<SyncContextProxy>(new NullSyncContextProxy());
fake_sync_manager.cc 198 syncer::SyncContextProxy* FakeSyncManager::GetSyncContextProxy() {
  /external/chromium_org/components/sync_driver/
non_blocking_data_type_manager.h 22 class SyncContextProxy;
52 // Connects the sync backend, as represented by a SyncContextProxy, to the
54 void ConnectSyncBackend(scoped_ptr<syncer::SyncContextProxy> proxy);
non_blocking_data_type_controller.h 24 // - The SyncContextProxy, represening the sync thread.
41 // type, and the ModelTypeSyncProxy and SyncContextProxy are available.
44 // NonBlockingDataTypeController or SyncContextProxy have not yet registered.
68 // Initialize the connection to the SyncContextProxy.
72 scoped_ptr<syncer::SyncContextProxy> sync_context_proxy);
74 // Disconnect from the current SyncContextProxy.
105 // Returns true if this object has access to the SyncContextProxy.
130 // The SyncContextProxy that connects to the current sync backend. May be
132 scoped_ptr<syncer::SyncContextProxy> sync_context_proxy_;
non_blocking_data_type_controller.cc 34 scoped_ptr<syncer::SyncContextProxy> sync_context_proxy) {
non_blocking_data_type_manager.cc 43 scoped_ptr<syncer::SyncContextProxy> proxy) {
non_blocking_data_type_controller_unittest.cc 73 // A proxy to the MockSyncContext that implements SyncContextProxy.
74 class MockSyncContextProxy : public syncer::SyncContextProxy {
109 virtual scoped_ptr<SyncContextProxy> Clone() const OVERRIDE {
110 return scoped_ptr<SyncContextProxy>(new MockSyncContextProxy(
  /external/chromium_org/sync/test/engine/
injectable_sync_context_proxy.cc 41 scoped_ptr<SyncContextProxy> InjectableSyncContextProxy::Clone() const {
43 return scoped_ptr<SyncContextProxy>(new InjectableSyncContextProxy(worker_));
injectable_sync_context_proxy.h 18 // A SyncContextProxy implementation that, when a connection request is made,
20 class InjectableSyncContextProxy : public syncer::SyncContextProxy {
32 virtual scoped_ptr<SyncContextProxy> Clone() const OVERRIDE;
  /external/chromium_org/sync/engine/
model_type_sync_proxy_impl.h 18 class SyncContextProxy;
48 void Enable(scoped_ptr<SyncContextProxy> context_proxy);
115 // SyncContextProxy.
123 scoped_ptr<SyncContextProxy> sync_context_proxy_;
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_mock.cc 76 scoped_ptr<syncer::SyncContextProxy>
78 return scoped_ptr<syncer::SyncContextProxy>();
sync_backend_host.h 155 virtual scoped_ptr<syncer::SyncContextProxy> GetSyncContextProxy() = 0;
sync_backend_host_impl.h 118 virtual scoped_ptr<syncer::SyncContextProxy> GetSyncContextProxy() OVERRIDE;
179 syncer::SyncContextProxy* sync_context_proxy,
327 scoped_ptr<syncer::SyncContextProxy> sync_context_proxy_;
sync_backend_host_mock.h 76 virtual scoped_ptr<syncer::SyncContextProxy> GetSyncContextProxy() OVERRIDE;
sync_backend_host_impl.cc 460 scoped_ptr<syncer::SyncContextProxy>
462 return sync_context_proxy_.get() ? scoped_ptr<syncer::SyncContextProxy>(
464 : scoped_ptr<syncer::SyncContextProxy>();
641 syncer::SyncContextProxy* sync_context_proxy,

Completed in 341 milliseconds

1 2