| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_FAKE_DRIVE_FILE_SYNC_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_DRIVE_FILE_SYNC_CLIENT_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_DRIVE_FILE_SYNC_CLIENT_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_DRIVE_FILE_SYNC_CLIENT_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" | 11 #include "chrome/browser/google_apis/drive_api_parser.h" |
| 12 #include "chrome/browser/google_apis/gdata_wapi_parser.h" | 12 #include "chrome/browser/google_apis/gdata_wapi_parser.h" |
| 13 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" | 13 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" |
| 14 #include "chrome/browser/sync_file_system/drive_file_sync_client_interface.h" | 14 #include "chrome/browser/sync_file_system/drive_file_sync_client_interface.h" |
| 15 #include "webkit/fileapi/syncable/sync_file_type.h" | 15 #include "webkit/browser/fileapi/syncable/sync_file_type.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 | 25 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 132 |
| 133 int64 largest_changestamp_; | 133 int64 largest_changestamp_; |
| 134 google_apis::GDataWapiUrlGenerator url_generator_; | 134 google_apis::GDataWapiUrlGenerator url_generator_; |
| 135 | 135 |
| 136 DISALLOW_COPY_AND_ASSIGN(FakeDriveFileSyncClient); | 136 DISALLOW_COPY_AND_ASSIGN(FakeDriveFileSyncClient); |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 } // namespace sync_file_system | 139 } // namespace sync_file_system |
| 140 | 140 |
| 141 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_DRIVE_FILE_SYNC_CLIENT_H_ | 141 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_DRIVE_FILE_SYNC_CLIENT_H_ |
| OLD | NEW |