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