summaryrefslogtreecommitdiffstats
path: root/win8/delegate_execute
diff options
context:
space:
mode:
Diffstat (limited to 'win8/delegate_execute')
-rw-r--r--win8/delegate_execute/delegate_execute_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/delegate_execute/delegate_execute_util.cc b/win8/delegate_execute/delegate_execute_util.cc
index c3097a2..78203ed 100644
--- a/win8/delegate_execute/delegate_execute_util.cc
+++ b/win8/delegate_execute/delegate_execute_util.cc
@@ -43,7 +43,7 @@ base::string16 ParametersFromSwitch(const char* a_switch) {
cmd_line.AppendSwitch(a_switch);
base::string16 command_string(cmd_line.GetCommandLineString());
- TrimWhitespace(command_string, TRIM_ALL, &command_string);
+ base::TrimWhitespace(command_string, base::TRIM_ALL, &command_string);
return command_string;
}