| 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_DRIVE_BACKEND_TEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_TEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_TEST_UTIL_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_TEST_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/browser/sync_file_system/sync_status_code.h" | 9 #include "chrome/browser/sync_file_system/sync_status_code.h" |
| 10 #include "google_apis/drive/gdata_errorcode.h" | 10 #include "google_apis/drive/drive_api_error_codes.h" |
| 11 | 11 |
| 12 namespace google_apis { | 12 namespace google_apis { |
| 13 class FileResource; | 13 class FileResource; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace sync_file_system { | 16 namespace sync_file_system { |
| 17 namespace drive_backend { | 17 namespace drive_backend { |
| 18 | 18 |
| 19 class FileDetails; | 19 class FileDetails; |
| 20 class FileMetadata; | 20 class FileMetadata; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 // Returns the kind of the given FileResourceKind. | 52 // Returns the kind of the given FileResourceKind. |
| 53 FileResourceKind GetFileResourceKind(const google_apis::FileResource& resource); | 53 FileResourceKind GetFileResourceKind(const google_apis::FileResource& resource); |
| 54 | 54 |
| 55 } // namespace test_util | 55 } // namespace test_util |
| 56 } // namespace drive_backend | 56 } // namespace drive_backend |
| 57 } // namespace sync_file_system | 57 } // namespace sync_file_system |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_TEST_UTIL
_H_ | 59 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_TEST_UTIL
_H_ |
| OLD | NEW |