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/chromeos/drive/file_task_executor.h" | 5 #include "chrome/browser/chromeos/drive/file_task_executor.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "chrome/browser/chromeos/drive/drive.pb.h" | 10 #include "chrome/browser/chromeos/drive/drive.pb.h" |
11 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 11 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
12 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 12 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
13 #include "chrome/browser/drive/drive_service_interface.h" | |
14 #include "chrome/browser/profiles/profile_manager.h" | 13 #include "chrome/browser/profiles/profile_manager.h" |
15 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 14 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" |
16 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
17 #include "chrome/browser/ui/browser_tabstrip.h" | 16 #include "chrome/browser/ui/browser_tabstrip.h" |
18 #include "chrome/browser/ui/browser_window.h" | 17 #include "chrome/browser/ui/browser_window.h" |
19 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" | 18 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" |
20 #include "chrome/common/extensions/api/file_manager_private.h" | 19 #include "chrome/common/extensions/api/file_manager_private.h" |
| 20 #include "components/drive/service/drive_service_interface.h" |
21 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
22 #include "storage/browser/fileapi/file_system_url.h" | 22 #include "storage/browser/fileapi/file_system_url.h" |
23 | 23 |
24 using storage::FileSystemURL; | 24 using storage::FileSystemURL; |
25 | 25 |
26 namespace drive { | 26 namespace drive { |
27 | 27 |
28 namespace { | 28 namespace { |
29 | 29 |
30 class FileTaskExecutorDelegateImpl : public FileTaskExecutorDelegate { | 30 class FileTaskExecutorDelegateImpl : public FileTaskExecutorDelegate { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 void FileTaskExecutor::Done(bool success) { | 155 void FileTaskExecutor::Done(bool success) { |
156 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 156 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
157 if (!done_.is_null()) | 157 if (!done_.is_null()) |
158 done_.Run(success | 158 done_.Run(success |
159 ? extensions::api::file_manager_private::TASK_RESULT_OPENED | 159 ? extensions::api::file_manager_private::TASK_RESULT_OPENED |
160 : extensions::api::file_manager_private::TASK_RESULT_FAILED); | 160 : extensions::api::file_manager_private::TASK_RESULT_FAILED); |
161 delete this; | 161 delete this; |
162 } | 162 } |
163 | 163 |
164 } // namespace drive | 164 } // namespace drive |
OLD | NEW |