summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search/iframe_source.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/search/iframe_source.cc')
-rw-r--r--chrome/browser/search/iframe_source.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/search/iframe_source.cc b/chrome/browser/search/iframe_source.cc
index e3f0b4e..2a86a45 100644
--- a/chrome/browser/search/iframe_source.cc
+++ b/chrome/browser/search/iframe_source.cc
@@ -25,15 +25,15 @@ IframeSource::~IframeSource() {
std::string IframeSource::GetMimeType(
const std::string& path_and_query) const {
std::string path(GURL("chrome-search://host/" + path_and_query).path());
- if (EndsWith(path, ".js", false))
+ if (base::EndsWith(path, ".js", false))
return "application/javascript";
- if (EndsWith(path, ".png", false))
+ if (base::EndsWith(path, ".png", false))
return "image/png";
- if (EndsWith(path, ".css", false))
+ if (base::EndsWith(path, ".css", false))
return "text/css";
- if (EndsWith(path, ".html", false))
+ if (base::EndsWith(path, ".html", false))
return "text/html";
- return "";
+ return std::string();
}
bool IframeSource::ShouldServiceRequest(