Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4059)

Unified Diff: chrome/browser/sync_file_system/mock_remote_file_sync_service.cc

Issue 11421197: Implement SyncFileSystemService::GetFileSyncStatus method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: indent fix Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
index ff20804807b2f834b7ab814844bf8601ed4054e7..c577d896d545d3eae39c8a5880c3087793ef1750 100644
--- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
+++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
@@ -32,6 +32,8 @@ MockRemoteFileSyncService::MockRemoteFileSyncService() {
.WillByDefault(Invoke(this, &self::ProcessRemoteChangeStub));
ON_CALL(*this, GetLocalChangeProcessor())
.WillByDefault(Return(&mock_local_change_processor_));
+ ON_CALL(*this, IsConflicting(_))
+ .WillByDefault(Return(false));
ON_CALL(*this, GetConflictFiles(_, _))
.WillByDefault(Invoke(this, &self::GetConflictFilesStub));
ON_CALL(*this, GetRemoteFileMetadata(_, _))

Powered by Google App Engine
This is Rietveld 408576698