summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/chrome_network_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/chrome_network_delegate.cc')
-rw-r--r--chrome/browser/net/chrome_network_delegate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/net/chrome_network_delegate.cc b/chrome/browser/net/chrome_network_delegate.cc
index 50f83bb..737317e 100644
--- a/chrome/browser/net/chrome_network_delegate.cc
+++ b/chrome/browser/net/chrome_network_delegate.cc
@@ -189,7 +189,7 @@ bool CanRequestBeDeltaEncoded(const net::URLRequest* request) {
const char *suffix = kEligibleMasks[i].suffix;
if (prefix && !base::StartsWithASCII(mime_type, prefix, kCaseSensitive))
continue;
- if (suffix && !EndsWith(mime_type, suffix, kCaseSensitive))
+ if (suffix && !base::EndsWith(mime_type, suffix, kCaseSensitive))
continue;
return true;
}