| Index: chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc
|
| index 15384ffce65ccd57add84b369b16ba9d4c7a1f57..ec43d33c3f2d471344f9f52f1b0bee81eeb2389f 100644
|
| --- a/chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/syncable_file_system_unittest.cc
|
| @@ -202,9 +202,9 @@ TEST_F(SyncableFileSystemTest, ChangeTrackerSimple) {
|
| file_system_.GetChangedURLsInTracker(&urls);
|
|
|
| EXPECT_EQ(3U, urls.size());
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath0)));
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath1)));
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath2)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath0)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath1)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath2)));
|
|
|
| VerifyAndClearChange(URL(kPath0),
|
| FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE,
|
| @@ -236,9 +236,9 @@ TEST_F(SyncableFileSystemTest, ChangeTrackerSimple) {
|
|
|
| // kPath0 and its all chidren (kPath1 and kPath2) must have been deleted.
|
| EXPECT_EQ(3U, urls.size());
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath0)));
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath1)));
|
| - EXPECT_TRUE(ContainsKey(urls, URL(kPath2)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath0)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath1)));
|
| + EXPECT_TRUE(base::ContainsKey(urls, URL(kPath2)));
|
|
|
| VerifyAndClearChange(URL(kPath0),
|
| FileChange(FileChange::FILE_CHANGE_DELETE,
|
|
|