| 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_V1_FAKE_API_UTIL_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_FAKE_API_UTIL_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_FAKE_API_UTIL_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_FAKE_API_UTIL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/google_apis/drive_api_parser.h" | |
| 12 #include "chrome/browser/google_apis/gdata_wapi_parser.h" | |
| 13 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | |
| 14 #include "chrome/browser/sync_file_system/drive_backend_v1/api_util_interface.h" | 11 #include "chrome/browser/sync_file_system/drive_backend_v1/api_util_interface.h" |
| 15 #include "chrome/browser/sync_file_system/sync_file_type.h" | 12 #include "chrome/browser/sync_file_system/sync_file_type.h" |
| 13 #include "google_apis/drive/drive_api_parser.h" |
| 14 #include "google_apis/drive/gdata_wapi_parser.h" |
| 15 #include "google_apis/drive/gdata_wapi_url_generator.h" |
| 16 | 16 |
| 17 class GURL; | 17 class GURL; |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace google_apis { | 20 namespace google_apis { |
| 21 class ResourceEntry; | 21 class ResourceEntry; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace sync_file_system { | 24 namespace sync_file_system { |
| 25 namespace drive_backend { | 25 namespace drive_backend { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 int64 largest_changestamp_; | 122 int64 largest_changestamp_; |
| 123 google_apis::GDataWapiUrlGenerator url_generator_; | 123 google_apis::GDataWapiUrlGenerator url_generator_; |
| 124 | 124 |
| 125 DISALLOW_COPY_AND_ASSIGN(FakeAPIUtil); | 125 DISALLOW_COPY_AND_ASSIGN(FakeAPIUtil); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 } // namespace drive_backend | 128 } // namespace drive_backend |
| 129 } // namespace sync_file_system | 129 } // namespace sync_file_system |
| 130 | 130 |
| 131 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_FAKE_API_UTIL_H_ | 131 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_V1_FAKE_API_UTIL_H_ |
| OLD | NEW |