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

  /external/chromium/chrome/browser/sync/engine/
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...]
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...]
  /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...]

Completed in 112 milliseconds