OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/sync_file_system/mock_local_change_processor.h" | 5 #include "chrome/browser/sync_file_system/mock_local_change_processor.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/single_thread_task_runner.h" |
| 10 #include "base/thread_task_runner_handle.h" |
10 #include "chrome/browser/sync_file_system/file_change.h" | 11 #include "chrome/browser/sync_file_system/file_change.h" |
11 #include "chrome/browser/sync_file_system/sync_file_metadata.h" | 12 #include "chrome/browser/sync_file_system/sync_file_metadata.h" |
12 #include "webkit/browser/fileapi/file_system_url.h" | 13 #include "webkit/browser/fileapi/file_system_url.h" |
13 | 14 |
14 using ::testing::_; | 15 using ::testing::_; |
15 using ::testing::Invoke; | 16 using ::testing::Invoke; |
16 using ::testing::Return; | 17 using ::testing::Return; |
17 | 18 |
18 namespace sync_file_system { | 19 namespace sync_file_system { |
19 | 20 |
20 MockLocalChangeProcessor::MockLocalChangeProcessor() { | 21 MockLocalChangeProcessor::MockLocalChangeProcessor() { |
21 ON_CALL(*this, ApplyLocalChange(_, _, _, _, _)) | 22 ON_CALL(*this, ApplyLocalChange(_, _, _, _, _)) |
22 .WillByDefault(Invoke(this, | 23 .WillByDefault(Invoke(this, |
23 &MockLocalChangeProcessor::ApplyLocalChangeStub)); | 24 &MockLocalChangeProcessor::ApplyLocalChangeStub)); |
24 } | 25 } |
25 | 26 |
26 MockLocalChangeProcessor::~MockLocalChangeProcessor() { | 27 MockLocalChangeProcessor::~MockLocalChangeProcessor() { |
27 } | 28 } |
28 | 29 |
29 void MockLocalChangeProcessor::ApplyLocalChangeStub( | 30 void MockLocalChangeProcessor::ApplyLocalChangeStub( |
30 const FileChange& change, | 31 const FileChange& change, |
31 const base::FilePath& local_file_path, | 32 const base::FilePath& local_file_path, |
32 const SyncFileMetadata& local_file_metadata, | 33 const SyncFileMetadata& local_file_metadata, |
33 const fileapi::FileSystemURL& url, | 34 const fileapi::FileSystemURL& url, |
34 const SyncStatusCallback& callback) { | 35 const SyncStatusCallback& callback) { |
35 base::MessageLoopProxy::current()->PostTask( | 36 base::ThreadTaskRunnerHandle::Get()->PostTask( |
36 FROM_HERE, base::Bind(callback, SYNC_STATUS_OK)); | 37 FROM_HERE, base::Bind(callback, SYNC_STATUS_OK)); |
37 } | 38 } |
38 | 39 |
39 } // namespace sync_file_system | 40 } // namespace sync_file_system |
OLD | NEW |