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( |