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

Unified Diff: chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc

Issue 9694016: Extend and refactor GDataFileBase and derived classes. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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/chromeos/gdata/gdata_file_system_unittest.cc
===================================================================
--- chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc (revision 126207)
+++ chrome/browser/chromeos/gdata/gdata_file_system_unittest.cc (working copy)
@@ -553,14 +553,14 @@
GDataFileBase* file = NULL;
EXPECT_TRUE((file = FindFile(file_in_root)) != NULL);
EXPECT_TRUE(file->AsGDataFile() != NULL);
- std::string file_in_root_resource = file->AsGDataFile()->resource();
+ std::string file_in_root_resource = file->AsGDataFile()->resource_id();
EXPECT_EQ(file, FindFileByResource(file_in_root_resource));
EXPECT_TRUE(FindFile(dir_in_root) != NULL);
EXPECT_TRUE((file = FindFile(file_in_subdir)) != NULL);
EXPECT_TRUE(file->AsGDataFile() != NULL);
- std::string file_in_subdir_resource = file->AsGDataFile()->resource();
+ std::string file_in_subdir_resource = file->AsGDataFile()->resource_id();
EXPECT_EQ(file, FindFileByResource(file_in_subdir_resource));
// Remove first file in root.

Powered by Google App Engine
This is Rietveld 408576698