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

Unified Diff: trunk/src/content/renderer/npapi/webplugin_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/renderer/npapi/webplugin_impl.cc
===================================================================
--- trunk/src/content/renderer/npapi/webplugin_impl.cc (revision 289319)
+++ trunk/src/content/renderer/npapi/webplugin_impl.cc (working copy)
@@ -929,7 +929,7 @@
// just block cross origin 307 POST redirects.
if (!client_info->notify_redirects) {
if (response.httpStatusCode() == 307 &&
- base::LowerCaseEqualsASCII(request.httpMethod().utf8(), "post")) {
+ 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 | « trunk/src/content/renderer/media/media_stream_impl.cc ('k') | trunk/src/content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698