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

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

Issue 11602004: Cleanup: Remote metadata parameter from ApplyLocalChange (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_local_change_processor.cc
diff --git a/chrome/browser/sync_file_system/mock_local_change_processor.cc b/chrome/browser/sync_file_system/mock_local_change_processor.cc
index c051cea57cfb1276c8d8cd39c1cac7005d914ce2..f92ece8c6fc13cc0ad290d1c7e5c7cec1a7ba88c 100644
--- a/chrome/browser/sync_file_system/mock_local_change_processor.cc
+++ b/chrome/browser/sync_file_system/mock_local_change_processor.cc
@@ -9,7 +9,6 @@
#include "base/message_loop_proxy.h"
#include "webkit/fileapi/file_system_url.h"
#include "webkit/fileapi/syncable/file_change.h"
-#include "webkit/fileapi/syncable/sync_file_metadata.h"
using ::testing::_;
using ::testing::Invoke;
@@ -18,7 +17,7 @@ using ::testing::Return;
namespace sync_file_system {
MockLocalChangeProcessor::MockLocalChangeProcessor() {
- ON_CALL(*this, ApplyLocalChange(_, _, _, _, _))
+ ON_CALL(*this, ApplyLocalChange(_, _, _, _))
.WillByDefault(Invoke(this,
&MockLocalChangeProcessor::ApplyLocalChangeStub));
}
@@ -29,7 +28,6 @@ MockLocalChangeProcessor::~MockLocalChangeProcessor() {
void MockLocalChangeProcessor::ApplyLocalChangeStub(
const fileapi::FileChange& change,
const FilePath& local_file_path,
- const fileapi::SyncFileMetadata& local_file_metadata,
const fileapi::FileSystemURL& url,
const fileapi::SyncStatusCallback& callback) {
base::MessageLoopProxy::current()->PostTask(

Powered by Google App Engine
This is Rietveld 408576698