Index: trunk/src/net/android/keystore_unittest.cc |
=================================================================== |
--- trunk/src/net/android/keystore_unittest.cc (revision 239400) |
+++ trunk/src/net/android/keystore_unittest.cc (working copy) |
@@ -117,8 +117,7 @@ |
// Load file in memory. |
base::FilePath certs_dir = GetTestCertsDirectory(); |
base::FilePath file_path = certs_dir.AppendASCII(filename); |
- ScopedStdioHandle handle( |
- file_util::OpenFile(file_path, "rb")); |
+ ScopedStdioHandle handle(base::OpenFile(file_path, "rb")); |
if (!handle.get()) { |
LOG(ERROR) << "Could not open private key file: " << filename; |
return NULL; |
@@ -167,7 +166,7 @@ |
// Load file as PEM data. |
base::FilePath certs_dir = GetTestCertsDirectory(); |
base::FilePath file_path = certs_dir.AppendASCII(filename); |
- ScopedStdioHandle handle(file_util::OpenFile(file_path, "rb")); |
+ ScopedStdioHandle handle(base::OpenFile(file_path, "rb")); |
if (!handle.get()) { |
LOG(ERROR) << "Could not open public key file: " << filename; |
return NULL; |