summaryrefslogtreecommitdiffstats
path: root/chrome/test/chromedriver/chrome_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/chromedriver/chrome_launcher.cc')
-rw-r--r--chrome/test/chromedriver/chrome_launcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
index 74f86c2..a2e543a 100644
--- a/chrome/test/chromedriver/chrome_launcher.cc
+++ b/chrome/test/chromedriver/chrome_launcher.cc
@@ -459,7 +459,7 @@ Status ProcessExtension(const std::string& extension,
// Parse the manifest and set the 'key' if not already present.
base::FilePath manifest_path(extension_dir.AppendASCII("manifest.json"));
std::string manifest_data;
- if (!file_util::ReadFileToString(manifest_path, &manifest_data))
+ if (!base::ReadFileToString(manifest_path, &manifest_data))
return Status(kUnknownError, "cannot read manifest");
scoped_ptr<base::Value> manifest_value(base::JSONReader::Read(manifest_data));
base::DictionaryValue* manifest;