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

  /external/chromium_org/chrome/browser/sync_file_system/local/
mock_sync_status_observer.h 19 MOCK_METHOD1(OnSyncEnabled, void(const fileapi::FileSystemURL& url));
local_file_sync_status.cc 29 FOR_EACH_OBSERVER(Observer, observer_list_, OnSyncEnabled(url));
43 FOR_EACH_OBSERVER(Observer, observer_list_, OnSyncEnabled(url));
local_file_sync_status.h 39 virtual void OnSyncEnabled(const fileapi::FileSystemURL& url) = 0;
syncable_file_operation_runner.h 60 virtual void OnSyncEnabled(const fileapi::FileSystemURL& url) OVERRIDE;
syncable_file_operation_runner.cc 61 void SyncableFileOperationRunner::OnSyncEnabled(const FileSystemURL& url) {
local_file_sync_service_unittest.cc 334 // We should get called OnSyncEnabled and OnWriteEnabled on kFile.
338 EXPECT_CALL(status_observer, OnSyncEnabled(kFile)).Times(AtLeast(1));
388 // We should get called OnSyncEnabled and possibly OnWriteEnabled (depends
391 EXPECT_CALL(status_observer, OnSyncEnabled(kFile)).Times(AtLeast(1));
426 // OnSyncEnabled is expected to be called at least or more than once.
428 EXPECT_CALL(status_observer, OnSyncEnabled(kDir)).Times(AtLeast(1));
456 // We should get called OnSyncEnabled and OnWriteEnabled on kPath and
457 // OnSyncEnabled on kOther.
459 EXPECT_CALL(status_observer, OnSyncEnabled(kPath)).Times(AtLeast(1));
460 EXPECT_CALL(status_observer, OnSyncEnabled(kOther)).Times(AtLeast(1))
    [all...]
canned_syncable_file_system.h 155 virtual void OnSyncEnabled(const fileapi::FileSystemURL& url) OVERRIDE;
local_file_sync_context.h 203 virtual void OnSyncEnabled(const fileapi::FileSystemURL& url) OVERRIDE;
canned_syncable_file_system.cc 541 void CannedSyncableFileSystem::OnSyncEnabled(const FileSystemURL& url) {
542 sync_status_observers_->Notify(&LocalFileSyncStatus::Observer::OnSyncEnabled,
local_file_sync_context.cc 520 void LocalFileSyncContext::OnSyncEnabled(const FileSystemURL& url) {
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc 322 // We should get called OnSyncEnabled and OnWriteEnabled on kFile as in:
325 // 2. OnSyncEnabled x 3 times; 1) when CreateFile is finished, 2) when
333 EXPECT_CALL(status_observer, OnSyncEnabled(kFile))
335 EXPECT_CALL(status_observer, OnSyncEnabled(kFile))

Completed in 82 milliseconds