HomeSort by relevance Sort by last modified time
    Searched refs:syncer (Results 1 - 5 of 5) 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_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_thread2_whitebox_unittest.cc 20 using browser_sync::Syncer;
26 Syncer* syncer = new Syncer(); local
32 syncer_thread_.reset(new SyncerThread(context_, syncer));
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...]

Completed in 5110 milliseconds