Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: webkit/activex_shim/activex_shared.cc

Issue 165297: Replaces some TrimWhitespace with TrimWhitespaceASCII or TrimWhitespaceUTF8.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: hunspell fix Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/tools/convert_dict/hunspell_reader.cc ('k') | webkit/glue/plugins/plugin_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/activex_shim/activex_shared.cc
===================================================================
--- webkit/activex_shim/activex_shared.cc (revision 23450)
+++ webkit/activex_shim/activex_shared.cc (working copy)
@@ -126,7 +126,7 @@
if (classid.size() > kClsidPrefixSize) {
std::string prefix = classid.substr(0, kClsidPrefixSize);
if (LowerCaseEqualsASCII(prefix, "clsid:")) {
- TrimWhitespace(classid.substr(kClsidPrefixSize), TRIM_ALL, clsid);
+ TrimWhitespaceASCII(classid.substr(kClsidPrefixSize), TRIM_ALL, clsid);
return true;
}
}
« no previous file with comments | « chrome/tools/convert_dict/hunspell_reader.cc ('k') | webkit/glue/plugins/plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698