Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2965)

Unified Diff: chrome/browser/sync_file_system/drive/api_util_unittest.cc

Issue 18355004: google_apis: Move data files out of chrome/test/data/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix extension tests Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/drive/api_util_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive/api_util_unittest.cc b/chrome/browser/sync_file_system/drive/api_util_unittest.cc
index aa992a10921303614a860450108ed99f06d0240f..1473b6dfbbca3ac44c5912456743f393e1118803 100644
--- a/chrome/browser/sync_file_system/drive/api_util_unittest.cc
+++ b/chrome/browser/sync_file_system/drive/api_util_unittest.cc
@@ -265,7 +265,7 @@ class APIUtilTest : public testing::Test {
scoped_ptr<DriveUploaderInterface>(fake_drive_uploader_));
fake_drive_service_->LoadResourceListForWapi(
- "chromeos/sync_file_system/initialize.json");
+ "sync_file_system/initialize.json");
}
virtual void TearDown() OVERRIDE {
@@ -437,7 +437,7 @@ void DidDeleteFile(bool* done_out,
void APIUtilTest::TestGetSyncRoot() {
fake_drive_service()->LoadAccountMetadataForWapi(
- "chromeos/sync_file_system/account_metadata.json");
+ "sync_file_system/account_metadata.json");
SetUpSyncRootDirectory();
bool done = false;
@@ -454,7 +454,7 @@ void APIUtilTest::TestGetSyncRoot() {
void APIUtilTest::TestCreateSyncRoot() {
fake_drive_service()->LoadAccountMetadataForWapi(
- "chromeos/sync_file_system/account_metadata.json");
+ "sync_file_system/account_metadata.json");
bool done = false;
GDataErrorCode error = google_apis::GDATA_OTHER_ERROR;
std::string resource_id;
@@ -478,7 +478,7 @@ void APIUtilTest::TestCreateSyncRoot() {
void APIUtilTest::TestCreateSyncRoot_Conflict() {
fake_drive_service()->LoadAccountMetadataForWapi(
- "chromeos/sync_file_system/account_metadata.json");
+ "sync_file_system/account_metadata.json");
fake_drive_service()->set_make_directory_conflict(true);
bool done = false;
@@ -577,7 +577,7 @@ void APIUtilTest::TestCreateOriginDirectory_Conflict() {
void APIUtilTest::TestGetLargestChangeStamp() {
fake_drive_service()->LoadAccountMetadataForWapi(
- "chromeos/sync_file_system/account_metadata.json");
+ "sync_file_system/account_metadata.json");
bool done = false;
GDataErrorCode error = google_apis::GDATA_OTHER_ERROR;

Powered by Google App Engine
This is Rietveld 408576698