Index: content/common/appcache_interfaces.cc |
diff --git a/content/common/appcache_interfaces.cc b/content/common/appcache_interfaces.cc |
index 8342a364f0f94d4cf2dbc6515dbd30e408494f65..fea95e702418bcb8fdc2e9d35ca28e667fc44473 100644 |
--- a/content/common/appcache_interfaces.cc |
+++ b/content/common/appcache_interfaces.cc |
@@ -9,7 +9,6 @@ |
#include "base/strings/pattern.h" |
#include "base/strings/string_util.h" |
#include "content/public/common/url_constants.h" |
-#include "net/url_request/url_request.h" |
#include "url/gurl.h" |
#include "url/url_constants.h" |
@@ -138,9 +137,4 @@ bool IsMethodSupportedForAppCache(const std::string& method) { |
return (method == kHttpGETMethod) || (method == kHttpHEADMethod); |
} |
-bool IsSchemeAndMethodSupportedForAppCache(const net::URLRequest* request) { |
- return IsSchemeSupportedForAppCache(request->url()) && |
- IsMethodSupportedForAppCache(request->method()); |
-} |
- |
} // namespace content |