| 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/gdata/drive_task_executor.h" | 5 #include "chrome/browser/chromeos/gdata/drive_task_executor.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/json/json_writer.h" | 10 #include "base/json/json_writer.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "chrome/browser/chromeos/extensions/file_browser_private_api.h" | 12 #include "chrome/browser/chromeos/extensions/file_browser_private_api.h" |
| 13 #include "chrome/browser/chromeos/gdata/documents_service_interface.h" | 13 #include "chrome/browser/chromeos/gdata/drive_service_interface.h" |
| 14 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" | 14 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" |
| 15 #include "chrome/browser/chromeos/gdata/gdata.pb.h" | 15 #include "chrome/browser/chromeos/gdata/gdata.pb.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/profiles/profile_manager.h" | 17 #include "chrome/browser/profiles/profile_manager.h" |
| 18 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
| 19 #include "chrome/browser/ui/browser_finder.h" | 19 #include "chrome/browser/ui/browser_finder.h" |
| 20 #include "chrome/browser/ui/browser_tabstrip.h" | 20 #include "chrome/browser/ui/browser_tabstrip.h" |
| 21 #include "chrome/browser/ui/browser_window.h" | 21 #include "chrome/browser/ui/browser_window.h" |
| 22 #include "content/public/browser/browser_thread.h" | 22 #include "content/public/browser/browser_thread.h" |
| 23 #include "webkit/fileapi/file_system_types.h" | 23 #include "webkit/fileapi/file_system_types.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 // Here, we are only insterested in files. | 93 // Here, we are only insterested in files. |
| 94 if (entry_proto.get() && !entry_proto->has_file_specific_info()) | 94 if (entry_proto.get() && !entry_proto->has_file_specific_info()) |
| 95 error = GDATA_FILE_ERROR_NOT_FOUND; | 95 error = GDATA_FILE_ERROR_NOT_FOUND; |
| 96 | 96 |
| 97 if (!system_service || error != GDATA_FILE_OK) { | 97 if (!system_service || error != GDATA_FILE_OK) { |
| 98 Done(false); | 98 Done(false); |
| 99 return; | 99 return; |
| 100 } | 100 } |
| 101 | 101 |
| 102 DocumentsServiceInterface* docs_service = | 102 DriveServiceInterface* drive_service = |
| 103 system_service->docs_service(); | 103 system_service->drive_service(); |
| 104 | 104 |
| 105 // Send off a request for the document service to authorize the apps for the | 105 // Send off a request for the drive service to authorize the apps for the |
| 106 // current document entry for this document so we can get the | 106 // current document entry for this document so we can get the |
| 107 // open-with-<app_id> urls from the document entry. | 107 // open-with-<app_id> urls from the document entry. |
| 108 docs_service->AuthorizeApp( | 108 drive_service->AuthorizeApp( |
| 109 GURL(entry_proto->edit_url()), | 109 GURL(entry_proto->edit_url()), |
| 110 app_id_, | 110 app_id_, |
| 111 base::Bind(&DriveTaskExecutor::OnAppAuthorized, | 111 base::Bind(&DriveTaskExecutor::OnAppAuthorized, |
| 112 this, | 112 this, |
| 113 entry_proto->resource_id())); | 113 entry_proto->resource_id())); |
| 114 } | 114 } |
| 115 | 115 |
| 116 void DriveTaskExecutor::OnAppAuthorized( | 116 void DriveTaskExecutor::OnAppAuthorized( |
| 117 const std::string& resource_id, | 117 const std::string& resource_id, |
| 118 GDataErrorCode error, | 118 GDataErrorCode error, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 169 |
| 170 void DriveTaskExecutor::Done(bool success) { | 170 void DriveTaskExecutor::Done(bool success) { |
| 171 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); | 171 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
| 172 current_index_ = 0; | 172 current_index_ = 0; |
| 173 if (!done_.is_null()) | 173 if (!done_.is_null()) |
| 174 done_.Run(success); | 174 done_.Run(success); |
| 175 done_.Reset(); | 175 done_.Reset(); |
| 176 } | 176 } |
| 177 | 177 |
| 178 } // namespace gdata | 178 } // namespace gdata |
| OLD | NEW |