| Index: base/win/shortcut_unittest.cc
|
| diff --git a/base/win/shortcut_unittest.cc b/base/win/shortcut_unittest.cc
|
| index 6db574101371c79cc9fadcc814b2577199d64a70..eaf152eb9dcbd328716cf71a1aab5e63074c4d81 100644
|
| --- a/base/win/shortcut_unittest.cc
|
| +++ b/base/win/shortcut_unittest.cc
|
| @@ -91,7 +91,7 @@ TEST_F(ShortcutTest, CreateAndResolveShortcut) {
|
| EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, NULL));
|
|
|
| char read_contents[arraysize(kFileContents)];
|
| - file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| + base::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| EXPECT_STREQ(kFileContents, read_contents);
|
| }
|
|
|
| @@ -104,7 +104,7 @@ TEST_F(ShortcutTest, ResolveShortcutWithArgs) {
|
| EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, &args));
|
|
|
| char read_contents[arraysize(kFileContents)];
|
| - file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| + base::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| EXPECT_STREQ(kFileContents, read_contents);
|
| EXPECT_EQ(link_properties_.arguments, args);
|
| }
|
| @@ -157,7 +157,7 @@ TEST_F(ShortcutTest, UpdateShortcutUpdateOnlyTargetAndResolve) {
|
| EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, NULL));
|
|
|
| char read_contents[arraysize(kFileContents2)];
|
| - file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| + base::ReadFile(resolved_name, read_contents, arraysize(read_contents));
|
| EXPECT_STREQ(kFileContents2, read_contents);
|
| }
|
|
|
|
|