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

Unified Diff: mojo/services/html_viewer/html_document_view.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 | « media/video/capture/win/video_capture_device_factory_win.cc ('k') | mojo/services/launcher/launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/html_document_view.cc
diff --git a/mojo/services/html_viewer/html_document_view.cc b/mojo/services/html_viewer/html_document_view.cc
index 812493aa710869d56a13d2819d32cade70116b9e..361d128e9182f9d277a5c7783e98eaf591d5fe7a 100644
--- a/mojo/services/html_viewer/html_document_view.cc
+++ b/mojo/services/html_viewer/html_document_view.cc
@@ -47,10 +47,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;
buffer_.push_back(name_latin1 + ": " + value_latin1);
« no previous file with comments | « media/video/capture/win/video_capture_device_factory_win.cc ('k') | mojo/services/launcher/launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698