Index: chrome/browser/devtools/devtools_file_helper.cc |
diff --git a/chrome/browser/devtools/devtools_file_helper.cc b/chrome/browser/devtools/devtools_file_helper.cc |
index 9ec7f902918bf1f069e72b6d61ef051f762ab72a..f3a10b551034360a8f09d78cea7e34286450e234 100644 |
--- a/chrome/browser/devtools/devtools_file_helper.cc |
+++ b/chrome/browser/devtools/devtools_file_helper.cc |
@@ -122,7 +122,7 @@ void WriteToFile(const base::FilePath& path, const std::string& content) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
DCHECK(!path.empty()); |
- file_util::WriteFile(path, content.c_str(), content.length()); |
+ base::WriteFile(path, content.c_str(), content.length()); |
} |
void AppendToFile(const base::FilePath& path, const std::string& content) { |