BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / sync_file_system / mock_local_change_processor.cc
blob903c6c8f70f5dd6e79cf5ae6f56e8cf2d4f63c8a
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/sync_file_system/mock_local_change_processor.h"
7 #include "base/bind.h"
8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h"
11 #include "chrome/browser/sync_file_system/file_change.h"
12 #include "chrome/browser/sync_file_system/sync_file_metadata.h"
13 #include "storage/browser/fileapi/file_system_url.h"
15 using ::testing::_;
16 using ::testing::Invoke;
17 using ::testing::Return;
19 namespace sync_file_system {
21 MockLocalChangeProcessor::MockLocalChangeProcessor() {
22 ON_CALL(*this, ApplyLocalChange(_, _, _, _, _))
23 .WillByDefault(Invoke(this,
24 &MockLocalChangeProcessor::ApplyLocalChangeStub));
27 MockLocalChangeProcessor::~MockLocalChangeProcessor() {
30 void MockLocalChangeProcessor::ApplyLocalChangeStub(
31 const FileChange& change,
32 const base::FilePath& local_file_path,
33 const SyncFileMetadata& local_file_metadata,
34 const storage::FileSystemURL& url,
35 const SyncStatusCallback& callback) {
36 base::ThreadTaskRunnerHandle::Get()->PostTask(
37 FROM_HERE, base::Bind(callback, SYNC_STATUS_OK));
40 } // namespace sync_file_system