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

Unified Diff: trunk/src/content/child/npapi/webplugin_delegate_impl.cc

Issue 474483002: Revert 289312 "Move StringToUpperASCII and LowerCaseEqualsASCII ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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
Index: trunk/src/content/child/npapi/webplugin_delegate_impl.cc
===================================================================
--- trunk/src/content/child/npapi/webplugin_delegate_impl.cc (revision 289319)
+++ trunk/src/content/child/npapi/webplugin_delegate_impl.cc (working copy)
@@ -70,7 +70,7 @@
scoped_ptr<char*[]> argv(new char*[arg_names.size()]);
for (size_t i = 0; i < arg_names.size(); ++i) {
if (quirks_ & PLUGIN_QUIRK_NO_WINDOWLESS &&
- base::LowerCaseEqualsASCII(arg_names[i], "windowlessvideo")) {
+ LowerCaseEqualsASCII(arg_names[i], "windowlessvideo")) {
continue;
}
argn[argc] = const_cast<char*>(arg_names[i].c_str());
« no previous file with comments | « trunk/src/content/child/npapi/plugin_url_fetcher.cc ('k') | trunk/src/content/child/site_isolation_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698