summaryrefslogtreecommitdiffstats
path: root/tools/gn/setup.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gn/setup.cc')
-rw-r--r--tools/gn/setup.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gn/setup.cc b/tools/gn/setup.cc
index aa8e8f0..033dab4 100644
--- a/tools/gn/setup.cc
+++ b/tools/gn/setup.cc
@@ -370,7 +370,7 @@ bool Setup::SaveArgsToFile() {
#if defined(OS_WIN)
// Use Windows lineendings for this file since it will often open in
// Notepad which can't handle Unix ones.
- ReplaceSubstringsAfterOffset(&contents, 0, "\n", "\r\n");
+ base::ReplaceSubstringsAfterOffset(&contents, 0, "\n", "\r\n");
#endif
if (base::WriteFile(build_arg_file, contents.c_str(),
static_cast<int>(contents.size())) == -1) {