OLD | NEW |
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 Loading... |
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 |
OLD | NEW |