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