OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/chromeos/arc/fileapi/arc_file_system_operation_runner_u
til.h" | 5 #include "chrome/browser/chromeos/arc/fileapi/arc_file_system_operation_runner_u
til.h" |
6 | 6 |
| 7 #include <utility> |
| 8 #include <vector> |
| 9 |
| 10 #include "chrome/browser/chromeos/arc/fileapi/arc_file_system_operation_runner.h
" |
7 #include "components/arc/arc_service_manager.h" | 11 #include "components/arc/arc_service_manager.h" |
8 #include "components/arc/file_system/arc_file_system_operation_runner.h" | |
9 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
10 #include "url/gurl.h" | 13 #include "url/gurl.h" |
11 | 14 |
12 using content::BrowserThread; | 15 using content::BrowserThread; |
13 | 16 |
14 namespace arc { | 17 namespace arc { |
15 | 18 |
16 namespace file_system_operation_runner_util { | 19 namespace file_system_operation_runner_util { |
17 | 20 |
18 namespace { | 21 namespace { |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 base::Bind( | 116 base::Bind( |
114 &GetChildDocumentsOnUIThread, authority, parent_document_id, | 117 &GetChildDocumentsOnUIThread, authority, parent_document_id, |
115 base::Bind( | 118 base::Bind( |
116 &PostToIOThread<base::Optional<std::vector<mojom::DocumentPtr>>>, | 119 &PostToIOThread<base::Optional<std::vector<mojom::DocumentPtr>>>, |
117 callback))); | 120 callback))); |
118 } | 121 } |
119 | 122 |
120 } // namespace file_system_operation_runner_util | 123 } // namespace file_system_operation_runner_util |
121 | 124 |
122 } // namespace arc | 125 } // namespace arc |
OLD | NEW |