| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" | 9 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" |
| 10 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" | 10 #include "chrome/browser/google_apis/gdata_errorcode.h" |
| 11 | 11 |
| 12 class FilePath; | 12 class FilePath; |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class Value; | 15 class Value; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace gdata { | 18 namespace gdata { |
| 19 | 19 |
| 20 class DriveCacheEntry; | 20 class DriveCacheEntry; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // Loads a test json file as root ("/drive") element. | 109 // Loads a test json file as root ("/drive") element. |
| 110 void LoadChangeFeed(const std::string& filename, | 110 void LoadChangeFeed(const std::string& filename, |
| 111 DriveFileSystem* file_system, | 111 DriveFileSystem* file_system, |
| 112 int64 start_changestamp, | 112 int64 start_changestamp, |
| 113 int64 root_feed_changestamp); | 113 int64 root_feed_changestamp); |
| 114 | 114 |
| 115 } // namespace test_util | 115 } // namespace test_util |
| 116 } // namespace gdata | 116 } // namespace gdata |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ | 118 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_TEST_UTIL_H_ |
| OLD | NEW |