Index: trunk/src/base/win/shortcut_unittest.cc |
=================================================================== |
--- trunk/src/base/win/shortcut_unittest.cc (revision 239399) |
+++ trunk/src/base/win/shortcut_unittest.cc (working copy) |
@@ -91,7 +91,7 @@ |
EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, NULL)); |
char read_contents[arraysize(kFileContents)]; |
- base::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
+ file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
EXPECT_STREQ(kFileContents, read_contents); |
} |
@@ -104,7 +104,7 @@ |
EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, &args)); |
char read_contents[arraysize(kFileContents)]; |
- base::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
+ file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
EXPECT_STREQ(kFileContents, read_contents); |
EXPECT_EQ(link_properties_.arguments, args); |
} |
@@ -157,7 +157,7 @@ |
EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, NULL)); |
char read_contents[arraysize(kFileContents2)]; |
- base::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
+ file_util::ReadFile(resolved_name, read_contents, arraysize(read_contents)); |
EXPECT_STREQ(kFileContents2, read_contents); |
} |