| 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/drive/drive_api_service.h" | 5 #include "components/drive/service/drive_api_service.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
| 12 #include "chrome/browser/drive/drive_api_util.h" | 12 #include "components/drive/drive_api_util.h" |
| 13 #include "google_apis/drive/auth_service.h" | 13 #include "google_apis/drive/auth_service.h" |
| 14 #include "google_apis/drive/base_requests.h" | 14 #include "google_apis/drive/base_requests.h" |
| 15 #include "google_apis/drive/drive_api_parser.h" | 15 #include "google_apis/drive/drive_api_parser.h" |
| 16 #include "google_apis/drive/drive_api_requests.h" | 16 #include "google_apis/drive/drive_api_requests.h" |
| 17 #include "google_apis/drive/files_list_request_runner.h" | 17 #include "google_apis/drive/files_list_request_runner.h" |
| 18 #include "google_apis/drive/request_sender.h" | 18 #include "google_apis/drive/request_sender.h" |
| 19 #include "google_apis/google_api_keys.h" | 19 #include "google_apis/google_api_keys.h" |
| 20 #include "net/url_request/url_request_context_getter.h" | 20 #include "net/url_request/url_request_context_getter.h" |
| 21 | 21 |
| 22 using google_apis::AboutResourceCallback; | 22 using google_apis::AboutResourceCallback; |
| (...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 // reference to RequestSender and we should ensure to delete the request when | 863 // reference to RequestSender and we should ensure to delete the request when |
| 864 // the sender is deleted. Resolve the circulating dependency and fix it. | 864 // the sender is deleted. Resolve the circulating dependency and fix it. |
| 865 const google_apis::CancelCallback callback = | 865 const google_apis::CancelCallback callback = |
| 866 sender_->StartRequestWithAuthRetry(request.release()); | 866 sender_->StartRequestWithAuthRetry(request.release()); |
| 867 return make_scoped_ptr<BatchRequestConfiguratorInterface>( | 867 return make_scoped_ptr<BatchRequestConfiguratorInterface>( |
| 868 new BatchRequestConfigurator(weak_ref, sender_->blocking_task_runner(), | 868 new BatchRequestConfigurator(weak_ref, sender_->blocking_task_runner(), |
| 869 url_generator_, callback)); | 869 url_generator_, callback)); |
| 870 } | 870 } |
| 871 | 871 |
| 872 } // namespace drive | 872 } // namespace drive |
| OLD | NEW |