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 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_API_UTIL_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_API_UTIL_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_API_UTIL_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_API_UTIL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/threading/non_thread_safe.h" | 12 #include "base/threading/non_thread_safe.h" |
13 #include "chrome/browser/drive/drive_service_interface.h" | 13 #include "chrome/browser/drive/drive_service_interface.h" |
14 #include "chrome/browser/google_apis/drive_api_url_generator.h" | 14 #include "chrome/browser/google_apis/drive_api_url_generator.h" |
15 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | 15 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" |
16 #include "chrome/browser/sync_file_system/drive_backend/api_util_interface.h" | 16 #include "chrome/browser/sync_file_system/drive_backend_v1/api_util_interface.h" |
17 #include "net/base/network_change_notifier.h" | 17 #include "net/base/network_change_notifier.h" |
18 #include "webkit/common/blob/scoped_file.h" | 18 #include "webkit/common/blob/scoped_file.h" |
19 | 19 |
20 class GURL; | 20 class GURL; |
21 class Profile; | 21 class Profile; |
22 | 22 |
23 namespace drive { class DriveUploaderInterface; } | 23 namespace drive { class DriveUploaderInterface; } |
24 | 24 |
25 namespace sync_file_system { | 25 namespace sync_file_system { |
26 namespace drive_backend { | 26 namespace drive_backend { |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 std::string root_resource_id_; | 256 std::string root_resource_id_; |
257 | 257 |
258 ObserverList<APIUtilObserver> observers_; | 258 ObserverList<APIUtilObserver> observers_; |
259 | 259 |
260 DISALLOW_COPY_AND_ASSIGN(APIUtil); | 260 DISALLOW_COPY_AND_ASSIGN(APIUtil); |
261 }; | 261 }; |
262 | 262 |
263 } // namespace drive_backend | 263 } // namespace drive_backend |
264 } // namespace sync_file_system | 264 } // namespace sync_file_system |
265 | 265 |
266 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_API_UTIL_H_ | 266 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_API_UTIL_H_ |
OLD | NEW |