HomeSort by relevance Sort by last modified time
    Searched refs:Syncer (Results 1 - 12 of 12) sorted by null

  /external/chromium/chrome/browser/sync/glue/
ui_model_worker_unittest.cc 41 // A faux-syncer that only interacts with its model safe worker.
42 class Syncer {
44 explicit Syncer(UIModelWorker* worker) : worker_(worker) {}
45 ~Syncer() {}
54 DISALLOW_COPY_AND_ASSIGN(Syncer);
57 // A task run from the SyncerThread to "sync share", ie tell the Syncer to
61 FakeSyncShareTask(Syncer* syncer, UIModelWorkerVisitor* visitor)
62 : syncer_(syncer), visitor_(visitor) {
68 Syncer* syncer_
117 Syncer* syncer() { return syncer_.get(); } function in class:UIModelWorkerTest
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer.h 63 // A Syncer provides a control interface for driving the individual steps
69 // A Syncer instance expects to run on a dedicated thread. Calls
73 class Syncer {
77 // The constructor may be called from a thread that is not the Syncer's
79 Syncer();
80 virtual ~Syncer();
82 // Called by other threads to tell the syncer to stop what it's doing
89 // responsibility to clean up after the syncer when it finishes a sync share
100 // Implements the PROCESS_CLIENT_COMMAND syncer step.
136 DISALLOW_COPY_AND_ASSIGN(Syncer);
    [all...]
syncer.cc 5 #include "chrome/browser/sync/engine/syncer.h"
45 using syncable::SYNCER;
56 Syncer::Syncer()
61 Syncer::~Syncer() {}
63 bool Syncer::ExitRequested() {
68 void Syncer::RequestEarlyExit() {
74 void Syncer::SyncShare(sessions::SyncSession* session) {
90 void Syncer::SyncShare(sessions::SyncSession* session
    [all...]
all_status.h 23 class Syncer;
50 // Examines syncer to calculate syncing and the unsynced count,
syncer_types.h 20 // The intent of this is to keep all shared data types and enums for the syncer
27 class Syncer;
91 // This is sent after the Syncer (and SyncerThread) have initiated self
124 // This struct is passed between parts of the syncer during the processing of
syncer_thread2_whitebox_unittest.cc 20 using browser_sync::Syncer;
26 Syncer* syncer = new Syncer(); local
32 syncer_thread_.reset(new SyncerThread(context_, syncer));
apply_updates_command_unittest.cc 10 #include "chrome/browser/sync/engine/syncer.h"
378 Syncer::UnsyncedMetaHandles handles;
423 Syncer::UnsyncedMetaHandles handles;
450 Syncer::UnsyncedMetaHandles handles;
472 Syncer::UnsyncedMetaHandles handles;
518 Syncer::UnsyncedMetaHandles handles;
547 Syncer::UnsyncedMetaHandles handles;
syncer_thread.h 5 // A class to run the syncer on a thread.
20 #include "chrome/browser/sync/engine/syncer.h"
44 // Takes ownership of both |context| and |syncer|.
45 SyncerThread(sessions::SyncSessionContext* context, Syncer* syncer);
207 // Invoke the Syncer to perform a sync.
210 // Called after the Syncer has performed the sync represented by |job|, to
327 scoped_ptr<Syncer> syncer_;
syncer_thread.cc 10 #include "chrome/browser/sync/engine/syncer.h"
69 Syncer* syncer)
78 syncer_(syncer),
363 // the nudge. Doing different would throw off some syncer commands like
611 // broken response while trying to download all updates, because the Syncer
613 // but HasMoreToSync is false, this implies that the Syncer determined no
619 VLOG(1) << "SyncerThread(" << this << ")" << " syncer has work to do: "
    [all...]
syncapi.cc 35 #include "chrome/browser/sync/engine/syncer.h"
83 using browser_sync::Syncer;
    [all...]
syncer_thread2_unittest.cc 8 #include "chrome/browser/sync/engine/syncer.h"
34 class MockSyncer : public Syncer {
84 MockSyncer* syncer() { return syncer_; } function in class:browser_sync::SyncerThread2Test
118 Mock::VerifyAndClearExpectations(syncer());
209 EXPECT_CALL(*syncer(), SyncShare(_,_,_))
227 EXPECT_CALL(*syncer(), SyncShare(_,_,_))
249 EXPECT_CALL(*syncer(), SyncShare(_,_,_))
276 EXPECT_CALL(*syncer(), SyncShare(_,_,_))
309 EXPECT_CALL(*syncer(), SyncShare(_,_,_))
347 EXPECT_CALL(*syncer(), SyncShare(_,_,_)
    [all...]
syncer_unittest.cc 5 // Syncer unit tests. Unfortunately a lot of these tests
24 #include "chrome/browser/sync/engine/syncer.h"
192 syncer_ = new Syncer();
469 Syncer* syncer_;
487 Syncer::UnsyncedMetaHandles handles;
    [all...]

Completed in 187 milliseconds