HomeSort by relevance Sort by last modified time
    Searched full:syncer (Results 1 - 25 of 72) sorted by null

1 2 3

  /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...]
ui_model_worker.h 31 // after the actual syncer pthread has exited.
76 // possible as the Syncer is trying to shut down. Called from the CoreThread.
92 // last pending_task_ that the Syncer throws at us, effectively dedicating
93 // the UI thread to terminating the Syncer.
105 // force them to run if the syncer is trying to shutdown.
  /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_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_end_command.h 14 // A syncer command for wrapping up a sync cycle.
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_command.h 18 // Syncer. SyncerCommand is abstract and all subclasses must implement
19 // ExecuteImpl(). This is done so that chunks of syncer operation can be unit
conflict_resolver.h 5 // A class that watches the syncer and attempts to resolve any conflicts that
40 // Called by the syncer at the end of a update/commit cycle.
41 // Returns true if the syncer should try to apply its updates again.
model_safe_worker.h 35 // The Syncer uses a ModelSafeWorker for all tasks that could potentially
47 // Any time the Syncer performs model modifications (e.g employing a
81 // TODO(tim): That's really the only way I can make sense of it in the Syncer
91 // If a model type is not enabled (that is, if the syncer should not
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));
verify_updates_command.cc 8 #include "chrome/browser/sync/engine/syncer.h"
24 using syncable::SYNCER;
38 WriteTransaction trans(dir, SYNCER, __FILE__, __LINE__);
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_;
process_updates_command.h 22 // A syncer command for processing updates.
store_timestamps_command.h 14 // A syncer command that extracts the changelog timestamp information from
apply_updates_command.cc 26 syncable::WriteTransaction trans(dir, syncable::SYNCER, __FILE__, __LINE__);
cleanup_disabled_types_command.h 13 // A syncer command that purges (from memory and disk) entries belonging to
  /external/chromium/chrome/browser/sync/notifier/
sync_notifier.h 15 // In particular, the SyncNotifier will be created on the UI thread, the syncer
17 // thread, the syncer core thread will be destroyed, and then the SyncNotifier
20 // TODO(akalin): Remove the code to deal with this situation once the syncer
  /external/chromium/chrome/browser/sync/
unrecoverable_error_handler.h 18 // syncer model are inconsistent, or similar. The ProfileSyncService will
  /external/chromium/chrome/browser/sync/sessions/
test_util.cc 20 // completed implies that the Syncer was unable to exhaust this count during
28 // completed implies that the Syncer was unable to make forward progress
test_util.h 10 #include "chrome/browser/sync/engine/syncer.h"
sync_session_unittest.cc 167 // Download updates has its own loop in the syncer; it shouldn't factor
182 // Download updates has its own loop in the syncer; it shouldn't factor
196 // Download updates has its own loop in the syncer; it shouldn't factor
213 // Download updates has its own loop in the syncer; it shouldn't factor
228 // Download updates has its own loop in the syncer; it shouldn't factor
243 // Download updates has its own loop in the syncer; it shouldn't factor
  /external/chromium/chrome/browser/sync/engine/net/
syncapi_server_connection_manager.h 19 // to the sync API by the application hosting the syncer backend.
  /external/chromium/chrome/browser/sync/syncable/
nigori_util_unittest.cc 35 // ProcessUnsyncedChangesForEncryption and other methods that rely on the syncer

Completed in 289 milliseconds

1 2 3