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_FAKE_API_UTIL_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FAKE_API_UTIL_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FAKE_API_UTIL_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_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" | 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/api_util_interface.h" | 14 #include "chrome/browser/sync_file_system/drive/api_util_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 namespace drive { | 25 namespace drive { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 int64 largest_changestamp_; | 123 int64 largest_changestamp_; |
124 google_apis::GDataWapiUrlGenerator url_generator_; | 124 google_apis::GDataWapiUrlGenerator url_generator_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(FakeAPIUtil); | 126 DISALLOW_COPY_AND_ASSIGN(FakeAPIUtil); |
127 }; | 127 }; |
128 | 128 |
129 } // namespace drive | 129 } // namespace drive |
130 } // namespace sync_file_system | 130 } // namespace sync_file_system |
131 | 131 |
132 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FAKE_API_UTIL_H_ | 132 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FAKE_API_UTIL_H_ |
OLD | NEW |