| 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 #ifndef GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ | 5 #ifndef GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ |
| 6 #define GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ | 6 #define GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <utility> | 12 #include <utility> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/callback_forward.h" | 15 #include "base/callback_forward.h" |
| 16 #include "base/location.h" | 16 #include "base/location.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/memory/scoped_vector.h" |
| 18 #include "base/sequenced_task_runner.h" | 19 #include "base/sequenced_task_runner.h" |
| 19 #include "base/task_runner_util.h" | 20 #include "base/task_runner_util.h" |
| 20 #include "base/time/time.h" | 21 #include "base/time/time.h" |
| 21 #include "base/values.h" | 22 #include "base/values.h" |
| 22 #include "google_apis/drive/base_requests.h" | 23 #include "google_apis/drive/base_requests.h" |
| 23 #include "google_apis/drive/drive_api_parser.h" | 24 #include "google_apis/drive/drive_api_parser.h" |
| 24 #include "google_apis/drive/drive_api_url_generator.h" | 25 #include "google_apis/drive/drive_api_url_generator.h" |
| 25 #include "google_apis/drive/drive_common_callbacks.h" | 26 #include "google_apis/drive/drive_common_callbacks.h" |
| 26 | 27 |
| 27 namespace google_apis { | 28 namespace google_apis { |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 // invalidate its weak pointers before any other members are destroyed. | 1259 // invalidate its weak pointers before any other members are destroyed. |
| 1259 base::WeakPtrFactory<BatchUploadRequest> weak_ptr_factory_; | 1260 base::WeakPtrFactory<BatchUploadRequest> weak_ptr_factory_; |
| 1260 | 1261 |
| 1261 DISALLOW_COPY_AND_ASSIGN(BatchUploadRequest); | 1262 DISALLOW_COPY_AND_ASSIGN(BatchUploadRequest); |
| 1262 }; | 1263 }; |
| 1263 | 1264 |
| 1264 } // namespace drive | 1265 } // namespace drive |
| 1265 } // namespace google_apis | 1266 } // namespace google_apis |
| 1266 | 1267 |
| 1267 #endif // GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ | 1268 #endif // GOOGLE_APIS_DRIVE_DRIVE_API_REQUESTS_H_ |
| OLD | NEW |