diff options
Diffstat (limited to 'webkit/appcache/appcache_interfaces.h')
-rw-r--r-- | webkit/appcache/appcache_interfaces.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_interfaces.h b/webkit/appcache/appcache_interfaces.h index 973f795..d29acd6 100644 --- a/webkit/appcache/appcache_interfaces.h +++ b/webkit/appcache/appcache_interfaces.h @@ -12,7 +12,9 @@ #include "base/time.h" #include "googleurl/src/gurl.h" +namespace net { class URLRequest; +} // namespace net namespace appcache { @@ -141,7 +143,7 @@ extern const char kHttpHEADMethod[]; bool IsSchemeSupported(const GURL& url); bool IsMethodSupported(const std::string& method); -bool IsSchemeAndMethodSupported(const URLRequest* request); +bool IsSchemeAndMethodSupported(const net::URLRequest* request); extern const FilePath::CharType kAppCacheDatabaseName[]; |