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

Unified Diff: chrome/browser/ui/webui/devtools_ui.cc

Issue 1233043003: Remove some legacy versions of StartsWith and EndsWith. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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: chrome/browser/ui/webui/devtools_ui.cc
diff --git a/chrome/browser/ui/webui/devtools_ui.cc b/chrome/browser/ui/webui/devtools_ui.cc
index 7960c0f6ab23cb1ee48c9be82589deaf10dd6324..68ccc018f21807f075806ec639e57a0740a228eb 100644
--- a/chrome/browser/ui/webui/devtools_ui.cc
+++ b/chrome/browser/ui/webui/devtools_ui.cc
@@ -49,19 +49,25 @@ const char kFallbackFrontendURL[] =
std::string GetMimeTypeForPath(const std::string& path) {
std::string filename = PathWithoutParams(path);
- if (base::EndsWith(filename, ".html", false)) {
+ if (base::EndsWith(filename, ".html", base::CompareCase::INSENSITIVE_ASCII)) {
return "text/html";
- } else if (base::EndsWith(filename, ".css", false)) {
+ } else if (base::EndsWith(filename, ".css",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "text/css";
- } else if (base::EndsWith(filename, ".js", false)) {
+ } else if (base::EndsWith(filename, ".js",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "application/javascript";
- } else if (base::EndsWith(filename, ".png", false)) {
+ } else if (base::EndsWith(filename, ".png",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "image/png";
- } else if (base::EndsWith(filename, ".gif", false)) {
+ } else if (base::EndsWith(filename, ".gif",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "image/gif";
- } else if (base::EndsWith(filename, ".svg", false)) {
+ } else if (base::EndsWith(filename, ".svg",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "image/svg+xml";
- } else if (base::EndsWith(filename, ".manifest", false)) {
+ } else if (base::EndsWith(filename, ".manifest",
+ base::CompareCase::INSENSITIVE_ASCII)) {
return "text/cache-manifest";
}
return "text/html";

Powered by Google App Engine
This is Rietveld 408576698