| 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 f3a10b551034360a8f09d78cea7e34286450e234..107d4df222dd6e376feb130ffd881ce6e53b1416 100644
|
| --- a/chrome/browser/devtools/devtools_file_helper.cc
|
| +++ b/chrome/browser/devtools/devtools_file_helper.cc
|
| @@ -129,7 +129,7 @@ void AppendToFile(const base::FilePath& path, const std::string& content) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| DCHECK(!path.empty());
|
|
|
| - file_util::AppendToFile(path, content.c_str(), content.length());
|
| + base::AppendToFile(path, content.c_str(), content.length());
|
| }
|
|
|
| fileapi::IsolatedContext* isolated_context() {
|
|
|