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

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

Issue 11316133: Added implementation of SyncEventObserver to route events to Javascript Extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed test to match updated SyncEventObserver interface Created 8 years, 1 month 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/sync_file_system_service_unittest.cc
diff --git a/chrome/browser/sync_file_system/sync_file_system_service_unittest.cc b/chrome/browser/sync_file_system/sync_file_system_service_unittest.cc
index 0591ad7b3ede7294e1440faf35d54deba3baef85..bb92d1e98c257308c82d253c5eedc93c333703f0 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service_unittest.cc
+++ b/chrome/browser/sync_file_system/sync_file_system_service_unittest.cc
@@ -75,9 +75,8 @@ class MockSyncEventObserver : public SyncEventObserver {
void(const GURL& app_origin,
SyncServiceState state,
const std::string& description));
- MOCK_METHOD3(OnFileSynced,
- void(fileapi::SyncStatusCode status,
- fileapi::SyncOperationType operation,
+ MOCK_METHOD2(OnFileSynced,
+ void(fileapi::SyncOperationType operation,
const fileapi::FileSystemURL& url));
};

Powered by Google App Engine
This is Rietveld 408576698