Index: chrome/browser/chromeos/drive/file_system_unittest.cc |
diff --git a/chrome/browser/chromeos/drive/file_system_unittest.cc b/chrome/browser/chromeos/drive/file_system_unittest.cc |
index 38313ead46d51e431778e3507ba387b3187e6609..e05a657ccf537e09aeda0e186ad261700419dd93 100644 |
--- a/chrome/browser/chromeos/drive/file_system_unittest.cc |
+++ b/chrome/browser/chromeos/drive/file_system_unittest.cc |
@@ -312,7 +312,7 @@ TEST_F(FileSystemTest, GetGrandRootEntry) { |
const base::FilePath kFilePath(FILE_PATH_LITERAL("drive")); |
scoped_ptr<ResourceEntry> entry = GetResourceEntrySync(kFilePath); |
ASSERT_TRUE(entry); |
- EXPECT_EQ(util::kDriveGrandRootLocalId, entry->resource_id()); |
+ EXPECT_EQ(util::kDriveGrandRootLocalId, entry->local_id()); |
// Getting the grand root entry should not cause the resource load to happen. |
EXPECT_EQ(0, fake_drive_service_->about_resource_load_count()); |
@@ -323,7 +323,7 @@ TEST_F(FileSystemTest, GetOtherDirEntry) { |
const base::FilePath kFilePath(FILE_PATH_LITERAL("drive/other")); |
scoped_ptr<ResourceEntry> entry = GetResourceEntrySync(kFilePath); |
ASSERT_TRUE(entry); |
- EXPECT_EQ(util::kDriveOtherDirLocalId, entry->resource_id()); |
+ EXPECT_EQ(util::kDriveOtherDirLocalId, entry->local_id()); |
// Getting the "other" directory entry should not cause the resource load to |
// happen. |