| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 AtomicString httpContentType() const; | 208 AtomicString httpContentType() const; |
| 209 | 209 |
| 210 bool wasCanceled() const { return m_error.isCancellation(); } | 210 bool wasCanceled() const { return m_error.isCancellation(); } |
| 211 bool errorOccurred() const { return m_status == LoadError || m_status == Dec
odeError; } | 211 bool errorOccurred() const { return m_status == LoadError || m_status == Dec
odeError; } |
| 212 bool loadFailedOrCanceled() { return !m_error.isNull(); } | 212 bool loadFailedOrCanceled() { return !m_error.isNull(); } |
| 213 | 213 |
| 214 DataBufferingPolicy getDataBufferingPolicy() const { return m_options.dataBu
fferingPolicy; } | 214 DataBufferingPolicy getDataBufferingPolicy() const { return m_options.dataBu
fferingPolicy; } |
| 215 void setDataBufferingPolicy(DataBufferingPolicy); | 215 void setDataBufferingPolicy(DataBufferingPolicy); |
| 216 | 216 |
| 217 // The isPreloaded() flag is using a counter in order to make sure that even
when |
| 218 // multiple ResourceFetchers are preloading the resource, it will remain mar
ked as |
| 219 // preloaded until *all* of them have used it. |
| 217 bool isUnusedPreload() const { return isPreloaded() && getPreloadResult() ==
PreloadNotReferenced; } | 220 bool isUnusedPreload() const { return isPreloaded() && getPreloadResult() ==
PreloadNotReferenced; } |
| 218 bool isPreloaded() const { return m_preloadCount; } | 221 bool isPreloaded() const { return m_preloadCount; } |
| 219 void increasePreloadCount() { ++m_preloadCount; } | 222 void increasePreloadCount() { ++m_preloadCount; } |
| 220 void decreasePreloadCount() | 223 void decreasePreloadCount() |
| 221 { | 224 { |
| 222 DCHECK(m_preloadCount); | 225 DCHECK(m_preloadCount); |
| 223 --m_preloadCount; | 226 --m_preloadCount; |
| 224 } | 227 } |
| 225 | 228 |
| 226 bool canReuseRedirectChain(); | 229 bool canReuseRedirectChain(); |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 | 399 |
| 397 Resource::Type m_type; | 400 Resource::Type m_type; |
| 398 }; | 401 }; |
| 399 | 402 |
| 400 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 403 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 401 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); | 404 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType(
) == Resource::typeName, resource.getType() == Resource::typeName); |
| 402 | 405 |
| 403 } // namespace blink | 406 } // namespace blink |
| 404 | 407 |
| 405 #endif | 408 #endif |
| OLD | NEW |