summaryrefslogtreecommitdiffstats
path: root/win8/delegate_execute
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:05:31 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 19:05:31 +0000
commit8af69c6c00a7a432710171d16b37abe77f18d51c (patch)
tree4ee0b9d30bc47eab2ee1cc4cbc1e9c16916cd426 /win8/delegate_execute
parentd283bc0f818820a4344d170b1e917840310a7742 (diff)
downloadchromium_src-8af69c6c00a7a432710171d16b37abe77f18d51c.zip
chromium_src-8af69c6c00a7a432710171d16b37abe77f18d51c.tar.gz
chromium_src-8af69c6c00a7a432710171d16b37abe77f18d51c.tar.bz2
Move TrimWhitespace to the base namespace.
R=viettrungluu@chromium.org, viettrungluu Review URL: https://codereview.chromium.org/183853011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254521 0039d316-1c4b-4281-b951-d872f2087c98
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;
}