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

Unified Diff: services/url_response_disk_cache/url_response_disk_cache_impl.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 | « sandbox/linux/tests/unit_tests.cc ('k') | services/view_manager/animation_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/url_response_disk_cache/url_response_disk_cache_impl.cc
diff --git a/services/url_response_disk_cache/url_response_disk_cache_impl.cc b/services/url_response_disk_cache/url_response_disk_cache_impl.cc
index 52161ab9631b63f3398c9fbe4789a135f0fa349b..9a05d4daeab86efdb28ddc5f4e271620fc203168 100644
--- a/services/url_response_disk_cache/url_response_disk_cache_impl.cc
+++ b/services/url_response_disk_cache/url_response_disk_cache_impl.cc
@@ -146,7 +146,7 @@ std::vector<std::string> GetHeaderValues(const std::string& header_name,
std::vector<std::string> result;
for (size_t i = 0u; i < headers.size(); ++i) {
std::string name = headers[i]->name;
- if (LowerCaseEqualsASCII(name, header_name.c_str()))
+ if (base::LowerCaseEqualsASCII(name, header_name.c_str()))
result.push_back(headers[i]->value);
}
return result;
« no previous file with comments | « sandbox/linux/tests/unit_tests.cc ('k') | services/view_manager/animation_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698