| 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 | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
| 6 rights reserved. | 6 rights reserved. |
| 7 | 7 |
| 8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
| 9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
| 10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 void cancelTimerFired(TimerBase*); | 418 void cancelTimerFired(TimerBase*); |
| 419 | 419 |
| 420 void revalidationSucceeded(const ResourceResponse&); | 420 void revalidationSucceeded(const ResourceResponse&); |
| 421 void revalidationFailed(); | 421 void revalidationFailed(); |
| 422 | 422 |
| 423 size_t calculateOverheadSize() const; | 423 size_t calculateOverheadSize() const; |
| 424 | 424 |
| 425 String reasonNotDeletable() const; | 425 String reasonNotDeletable() const; |
| 426 | 426 |
| 427 // MemoryCoordinatorClient overrides: | 427 // MemoryCoordinatorClient overrides: |
| 428 void onMemoryStateChange(MemoryState) override; | 428 void onPurgeMemory() override; |
| 429 | 429 |
| 430 Member<CachedMetadataHandlerImpl> m_cacheHandler; | 430 Member<CachedMetadataHandlerImpl> m_cacheHandler; |
| 431 RefPtr<SecurityOrigin> m_fetcherSecurityOrigin; | 431 RefPtr<SecurityOrigin> m_fetcherSecurityOrigin; |
| 432 | 432 |
| 433 ResourceError m_error; | 433 ResourceError m_error; |
| 434 | 434 |
| 435 double m_loadFinishTime; | 435 double m_loadFinishTime; |
| 436 | 436 |
| 437 unsigned long m_identifier; | 437 unsigned long m_identifier; |
| 438 | 438 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 }; | 502 }; |
| 503 | 503 |
| 504 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 504 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 505 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ | 505 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, \ |
| 506 resource->getType() == Resource::typeName, \ | 506 resource->getType() == Resource::typeName, \ |
| 507 resource.getType() == Resource::typeName); | 507 resource.getType() == Resource::typeName); |
| 508 | 508 |
| 509 } // namespace blink | 509 } // namespace blink |
| 510 | 510 |
| 511 #endif | 511 #endif |
| OLD | NEW |