commit | 8af69c6c00a7a432710171d16b37abe77f18d51c | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Mon Mar 03 19:05:31 2014 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Mon Mar 03 19:05:31 2014 |
tree | 4ee0b9d30bc47eab2ee1cc4cbc1e9c16916cd426 | |
parent | d283bc0f818820a4344d170b1e917840310a7742 [diff] [blame] |
Move TrimWhitespace to the base namespace. [email protected], viettrungluu Review URL: https://codereview.chromium.org/183853011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254521 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/file_select_helper.cc b/chrome/browser/file_select_helper.cc index b4f78e2..1ebbe66 100644 --- a/chrome/browser/file_select_helper.cc +++ b/chrome/browser/file_select_helper.cc
@@ -479,7 +479,8 @@ std::string unused; if (accept_type.length() <= 1 || StringToLowerASCII(accept_type) != accept_type || - TrimWhitespaceASCII(accept_type, TRIM_ALL, &unused) != TRIM_NONE) { + base::TrimWhitespaceASCII(accept_type, base::TRIM_ALL, &unused) != + base::TRIM_NONE) { return false; } return true;