OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/drive_backend/uninstall_app_task.h" | 5 #include "chrome/browser/sync_file_system/drive_backend/uninstall_app_task.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 "chrome/browser/drive/drive_api_util.h" | |
10 #include "chrome/browser/drive/drive_service_interface.h" | |
11 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.
h" | 9 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.
h" |
12 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_util.h" | 10 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_util.h" |
13 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.h" | 11 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.h" |
14 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.pb.h" | 12 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.pb.h" |
15 #include "chrome/browser/sync_file_system/drive_backend/sync_engine_context.h" | 13 #include "chrome/browser/sync_file_system/drive_backend/sync_engine_context.h" |
16 #include "chrome/browser/sync_file_system/drive_backend/tracker_id_set.h" | 14 #include "chrome/browser/sync_file_system/drive_backend/tracker_id_set.h" |
17 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" | 15 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" |
| 16 #include "components/drive/drive_api_util.h" |
| 17 #include "components/drive/service/drive_service_interface.h" |
18 #include "google_apis/drive/drive_api_parser.h" | 18 #include "google_apis/drive/drive_api_parser.h" |
19 | 19 |
20 namespace sync_file_system { | 20 namespace sync_file_system { |
21 namespace drive_backend { | 21 namespace drive_backend { |
22 | 22 |
23 UninstallAppTask::UninstallAppTask(SyncEngineContext* sync_context, | 23 UninstallAppTask::UninstallAppTask(SyncEngineContext* sync_context, |
24 const std::string& app_id, | 24 const std::string& app_id, |
25 UninstallFlag uninstall_flag) | 25 UninstallFlag uninstall_flag) |
26 : sync_context_(sync_context), | 26 : sync_context_(sync_context), |
27 app_id_(app_id), | 27 app_id_(app_id), |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 return sync_context_->GetMetadataDatabase(); | 97 return sync_context_->GetMetadataDatabase(); |
98 } | 98 } |
99 | 99 |
100 drive::DriveServiceInterface* UninstallAppTask::drive_service() { | 100 drive::DriveServiceInterface* UninstallAppTask::drive_service() { |
101 set_used_network(true); | 101 set_used_network(true); |
102 return sync_context_->GetDriveService(); | 102 return sync_context_->GetDriveService(); |
103 } | 103 } |
104 | 104 |
105 } // namespace drive_backend | 105 } // namespace drive_backend |
106 } // namespace sync_file_system | 106 } // namespace sync_file_system |
OLD | NEW |