| Index: content/child/npapi/webplugin_delegate_impl.cc
|
| diff --git a/content/child/npapi/webplugin_delegate_impl.cc b/content/child/npapi/webplugin_delegate_impl.cc
|
| index e53cbc382c1a243b66e1f9587e6736d3f7cd794f..a927e449e8cbfe7a52a69fbe9462efedecbfb167 100644
|
| --- a/content/child/npapi/webplugin_delegate_impl.cc
|
| +++ b/content/child/npapi/webplugin_delegate_impl.cc
|
| @@ -70,7 +70,7 @@ bool WebPluginDelegateImpl::Initialize(
|
| 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 &&
|
| - LowerCaseEqualsASCII(arg_names[i], "windowlessvideo")) {
|
| + base::LowerCaseEqualsASCII(arg_names[i], "windowlessvideo")) {
|
| continue;
|
| }
|
| argn[argc] = const_cast<char*>(arg_names[i].c_str());
|
|
|