| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
| 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
| 6 | 6 |
| 7 This library is free software; you can redistribute it and/or | 7 This library is free software; you can redistribute it and/or |
| 8 modify it under the terms of the GNU Library General Public | 8 modify it under the terms of the GNU Library General Public |
| 9 License as published by the Free Software Foundation; either | 9 License as published by the Free Software Foundation; either |
| 10 version 2 of the License, or (at your option) any later version. | 10 version 2 of the License, or (at your option) any later version. |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 unsigned m_preloadCount; | 274 unsigned m_preloadCount; |
| 275 | 275 |
| 276 unsigned m_preloadResult : 2; // PreloadResult | 276 unsigned m_preloadResult : 2; // PreloadResult |
| 277 | 277 |
| 278 bool m_inLiveDecodedResourcesList : 1; | 278 bool m_inLiveDecodedResourcesList : 1; |
| 279 bool m_requestedFromNetworkingLayer : 1; | 279 bool m_requestedFromNetworkingLayer : 1; |
| 280 | 280 |
| 281 bool m_inCache : 1; | 281 bool m_inCache : 1; |
| 282 bool m_loading : 1; | 282 bool m_loading : 1; |
| 283 | 283 |
| 284 unsigned m_type : 3; // Type | 284 unsigned m_type : 4; // Type |
| 285 unsigned m_status : 3; // Status | 285 unsigned m_status : 3; // Status |
| 286 | 286 |
| 287 #ifndef NDEBUG | 287 #ifndef NDEBUG |
| 288 bool m_deleted; | 288 bool m_deleted; |
| 289 unsigned m_lruIndex; | 289 unsigned m_lruIndex; |
| 290 #endif | 290 #endif |
| 291 | 291 |
| 292 CachedResource* m_nextInAllResourcesList; | 292 CachedResource* m_nextInAllResourcesList; |
| 293 CachedResource* m_prevInAllResourcesList; | 293 CachedResource* m_prevInAllResourcesList; |
| 294 | 294 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 306 // If this field is non-null, the resource has a proxy for checking whether
it is still up to date (see m_resourceToRevalidate). | 306 // If this field is non-null, the resource has a proxy for checking whether
it is still up to date (see m_resourceToRevalidate). |
| 307 CachedResource* m_proxyResource; | 307 CachedResource* m_proxyResource; |
| 308 | 308 |
| 309 // These handles will need to be updated to point to the m_resourceToRevalid
ate in case we get 304 response. | 309 // These handles will need to be updated to point to the m_resourceToRevalid
ate in case we get 304 response. |
| 310 HashSet<CachedResourceHandleBase*> m_handlesToRevalidate; | 310 HashSet<CachedResourceHandleBase*> m_handlesToRevalidate; |
| 311 }; | 311 }; |
| 312 | 312 |
| 313 } | 313 } |
| 314 | 314 |
| 315 #endif | 315 #endif |
| OLD | NEW |