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

Unified Diff: webkit/appcache/web_application_cache_host_impl.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_request_handler.cc ('k') | webkit/appcache/web_application_cache_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/web_application_cache_host_impl.h
===================================================================
--- webkit/appcache/web_application_cache_host_impl.h (revision 26501)
+++ webkit/appcache/web_application_cache_host_impl.h (working copy)
@@ -40,7 +40,7 @@
virtual bool swapCache();
private:
- enum ShouldCaptureMainResponse {
+ enum IsNewMasterEntry {
MAYBE,
YES,
NO
@@ -53,10 +53,11 @@
appcache::Status status_;
bool has_cached_status_;
appcache::Status cached_status_;
- WebKit::WebURLResponse main_response_;
- GURL main_response_url_;
- bool is_in_http_family_;
- ShouldCaptureMainResponse should_capture_main_response_;
+ WebKit::WebURLResponse document_response_;
+ GURL document_url_;
+ bool is_scheme_supported_;
+ bool is_get_method_;
+ IsNewMasterEntry is_new_master_entry_;
};
} // namespace
« no previous file with comments | « webkit/appcache/appcache_request_handler.cc ('k') | webkit/appcache/web_application_cache_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698