OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ |
7 | 7 |
8 #include <type_traits> | 8 #include <type_traits> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/location.h" | 11 #include "base/location.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" |
14 #include "base/sequenced_task_runner.h" | 15 #include "base/sequenced_task_runner.h" |
15 #include "base/thread_task_runner_handle.h" | 16 #include "base/thread_task_runner_handle.h" |
16 | 17 |
17 // TODO(tzik): Merge this file to media/base/bind_to_current_loop.h. | 18 // TODO(tzik): Merge this file to media/base/bind_to_current_loop.h. |
18 | 19 |
19 namespace sync_file_system { | 20 namespace sync_file_system { |
20 namespace drive_backend { | 21 namespace drive_backend { |
21 | 22 |
22 namespace internal { | 23 namespace internal { |
23 | 24 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 const base::Callback<T>& callback) { | 97 const base::Callback<T>& callback) { |
97 return RelayCallbackToTaskRunner( | 98 return RelayCallbackToTaskRunner( |
98 base::ThreadTaskRunnerHandle::Get(), | 99 base::ThreadTaskRunnerHandle::Get(), |
99 from_here, callback); | 100 from_here, callback); |
100 } | 101 } |
101 | 102 |
102 } // namespace drive_backend | 103 } // namespace drive_backend |
103 } // namespace sync_file_system | 104 } // namespace sync_file_system |
104 | 105 |
105 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ | 106 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_CALLBACK_HELPER_H_ |
OLD | NEW |