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

Side by Side Diff: webkit/appcache/web_application_cache_host_impl.h

Issue 6546004: Defend against selectCache() being called multiple times.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ 5 #ifndef WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
6 #define WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ 6 #define WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 AppCacheBackend* backend_; 68 AppCacheBackend* backend_;
69 int host_id_; 69 int host_id_;
70 appcache::Status status_; 70 appcache::Status status_;
71 WebKit::WebURLResponse document_response_; 71 WebKit::WebURLResponse document_response_;
72 GURL document_url_; 72 GURL document_url_;
73 bool is_scheme_supported_; 73 bool is_scheme_supported_;
74 bool is_get_method_; 74 bool is_get_method_;
75 IsNewMasterEntry is_new_master_entry_; 75 IsNewMasterEntry is_new_master_entry_;
76 appcache::AppCacheInfo cache_info_; 76 appcache::AppCacheInfo cache_info_;
77 GURL original_main_resource_url_; // Used to detect redirection. 77 GURL original_main_resource_url_; // Used to detect redirection.
78 bool was_select_cache_called_;
78 }; 79 };
79 80
80 } // namespace 81 } // namespace
81 82
82 #endif // WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_ 83 #endif // WEBKIT_APPCACHE_WEB_APPLICATION_CACHE_HOST_IMPL_H_
83 84
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698