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

Unified Diff: content/renderer/npapi/webplugin_impl.cc

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/npapi/webplugin_impl.cc
diff --git a/content/renderer/npapi/webplugin_impl.cc b/content/renderer/npapi/webplugin_impl.cc
index 2206b11c54bbeab341289080447a99d82c35d1f4..ee4c5b26607e09d066702e03880ca8ecda42201a 100644
--- a/content/renderer/npapi/webplugin_impl.cc
+++ b/content/renderer/npapi/webplugin_impl.cc
@@ -929,7 +929,7 @@ void WebPluginImpl::willSendRequest(WebURLLoader* loader,
// just block cross origin 307 POST redirects.
if (!client_info->notify_redirects) {
if (response.httpStatusCode() == 307 &&
- LowerCaseEqualsASCII(request.httpMethod().utf8(), "post")) {
+ base::LowerCaseEqualsASCII(request.httpMethod().utf8(), "post")) {
GURL original_request_url(response.url());
GURL response_url(request.url());
if (original_request_url.GetOrigin() != response_url.GetOrigin()) {
« no previous file with comments | « content/renderer/media/media_stream_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698