| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 296 |
| 297 ResourceResponse m_response; | 297 ResourceResponse m_response; |
| 298 | 298 |
| 299 RefPtr<SharedBuffer> m_data; | 299 RefPtr<SharedBuffer> m_data; |
| 300 | 300 |
| 301 private: | 301 private: |
| 302 class ResourceCallback; | 302 class ResourceCallback; |
| 303 class CachedMetadataHandlerImpl; | 303 class CachedMetadataHandlerImpl; |
| 304 class ServiceWorkerResponseCachedMetadataHandler; | 304 class ServiceWorkerResponseCachedMetadataHandler; |
| 305 | 305 |
| 306 void cancelTimerFired(Timer<Resource>*); | 306 void cancelTimerFired(TimerBase*); |
| 307 | 307 |
| 308 void revalidationSucceeded(const ResourceResponse&); | 308 void revalidationSucceeded(const ResourceResponse&); |
| 309 void revalidationFailed(); | 309 void revalidationFailed(); |
| 310 | 310 |
| 311 size_t calculateOverheadSize() const; | 311 size_t calculateOverheadSize() const; |
| 312 | 312 |
| 313 bool unlock(); | 313 bool unlock(); |
| 314 | 314 |
| 315 String reasonNotDeletable() const; | 315 String reasonNotDeletable() const; |
| 316 | 316 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 | 371 |
| 372 Resource::Type m_type; | 372 Resource::Type m_type; |
| 373 }; | 373 }; |
| 374 | 374 |
| 375 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 375 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 376 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); | 376 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); |
| 377 | 377 |
| 378 } // namespace blink | 378 } // namespace blink |
| 379 | 379 |
| 380 #endif | 380 #endif |
| OLD | NEW |