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

Unified Diff: sky/services/platform/url_request_types.cc

Issue 1180693002: Update from https://crrev.com/333737 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 6 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 | « skia/ext/skia_utils_base.cc ('k') | sky/shell/android/tracing_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/services/platform/url_request_types.cc
diff --git a/sky/services/platform/url_request_types.cc b/sky/services/platform/url_request_types.cc
index 367577b2c3ca6276330e04e1ceb451d3f6c8a8d0..8191d866d8316beca19b766681169e361a419fd9 100644
--- a/sky/services/platform/url_request_types.cc
+++ b/sky/services/platform/url_request_types.cc
@@ -25,10 +25,10 @@ class HeaderFlattener : public blink::WebHTTPHeaderVisitor {
// Skip over referrer headers found in the header map because we already
// pulled it out as a separate parameter.
- if (LowerCaseEqualsASCII(name_latin1, "referer"))
+ if (base::LowerCaseEqualsASCII(name_latin1, "referer"))
return;
- if (LowerCaseEqualsASCII(name_latin1, "accept"))
+ if (base::LowerCaseEqualsASCII(name_latin1, "accept"))
has_accept_header_ = true;
auto header = HttpHeader::New();
« no previous file with comments | « skia/ext/skia_utils_base.cc ('k') | sky/shell/android/tracing_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698