| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ |
| 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "url/gurl.h" |
| 12 #include "webkit/browser/webkit_storage_browser_export.h" | 12 #include "webkit/browser/webkit_storage_browser_export.h" |
| 13 | 13 |
| 14 namespace appcache { | 14 namespace appcache { |
| 15 | 15 |
| 16 class AppCache; | 16 class AppCache; |
| 17 class AppCacheGroup; | 17 class AppCacheGroup; |
| 18 class AppCacheResponseInfo; | 18 class AppCacheResponseInfo; |
| 19 | 19 |
| 20 // Represents the working set of appcache object instances | 20 // Represents the working set of appcache object instances |
| 21 // currently in memory. | 21 // currently in memory. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 CacheMap caches_; | 67 CacheMap caches_; |
| 68 GroupMap groups_; | 68 GroupMap groups_; |
| 69 GroupsByOriginMap groups_by_origin_; // origin -> (manifest -> group) | 69 GroupsByOriginMap groups_by_origin_; // origin -> (manifest -> group) |
| 70 ResponseInfoMap response_infos_; | 70 ResponseInfoMap response_infos_; |
| 71 bool is_disabled_; | 71 bool is_disabled_; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace appcache | 74 } // namespace appcache |
| 75 | 75 |
| 76 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ | 76 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_ |
| OLD | NEW |