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

Unified Diff: webkit/appcache/appcache_interfaces.h

Issue 205017: Check for supported schemes and methods. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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
« no previous file with comments | « webkit/appcache/appcache_host.cc ('k') | webkit/appcache/appcache_interfaces.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_interfaces.h
===================================================================
--- webkit/appcache/appcache_interfaces.h (revision 26501)
+++ webkit/appcache/appcache_interfaces.h (working copy)
@@ -5,10 +5,12 @@
#ifndef WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
#define WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
+#include <string>
#include <vector>
#include "base/basictypes.h"
class GURL;
+class URLRequest;
namespace appcache {
@@ -70,6 +72,19 @@
virtual ~AppCacheBackend() {}
};
+// Useful string constants.
+// Note: These are also defined elsewhere in the chrome code base in
+// url_contants.h .cc, however the appcache library doesn't not have
+// any dependencies on the chrome library, so we can't use them in here.
+extern const char kHttpScheme[];
+extern const char kHttpsScheme[];
+extern const char kHttpGETMethod[];
+extern const char kHttpHEADMethod[];
+
+bool IsSchemeSupported(const GURL& url);
+bool IsMethodSupported(const std::string& method);
+bool IsSchemeAndMethodSupported(const URLRequest* request);
+
} // namespace
#endif // WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
« no previous file with comments | « webkit/appcache/appcache_host.cc ('k') | webkit/appcache/appcache_interfaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698