| Index: chrome/browser/web_applications/web_app_mac_unittest.mm
|
| diff --git a/chrome/browser/web_applications/web_app_mac_unittest.mm b/chrome/browser/web_applications/web_app_mac_unittest.mm
|
| index 09bc976d383248acd509aba7efa1033824f8d8f2..a96ff4c5b389856e2d9e1d4db0e9a14970855c67 100644
|
| --- a/chrome/browser/web_applications/web_app_mac_unittest.mm
|
| +++ b/chrome/browser/web_applications/web_app_mac_unittest.mm
|
| @@ -139,7 +139,7 @@ TEST(WebAppShortcutCreatorTest, UpdateShortcuts) {
|
|
|
| shortcut_creator.BuildShortcut(other_folder.Append(app_name));
|
|
|
| - EXPECT_TRUE(file_util::Delete(
|
| + EXPECT_TRUE(base::Delete(
|
| other_folder.Append(app_name).Append("Contents"), true));
|
|
|
| EXPECT_TRUE(shortcut_creator.UpdateShortcuts());
|
| @@ -153,7 +153,7 @@ TEST(WebAppShortcutCreatorTest, UpdateShortcuts) {
|
|
|
| shortcut_creator.BuildShortcut(other_folder.Append(app_name));
|
|
|
| - EXPECT_TRUE(file_util::Delete(
|
| + EXPECT_TRUE(base::Delete(
|
| other_folder.Append(app_name).Append("Contents"), true));
|
|
|
| EXPECT_FALSE(shortcut_creator.UpdateShortcuts());
|
|
|