summaryrefslogtreecommitdiffstats
path: root/chrome/browser/devtools/devtools_file_helper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/devtools/devtools_file_helper.cc')
-rw-r--r--chrome/browser/devtools/devtools_file_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/devtools/devtools_file_helper.cc b/chrome/browser/devtools/devtools_file_helper.cc
index 9ec7f90..f3a10b5 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) {