Chromium Code Reviews| 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() { ASSERT(m_preloadCount); --m_preloadCount; } | 223 void decreasePreloadCount() { ASSERT(m_preloadCount); --m_preloadCount; } |
| 221 | 224 |
| 222 bool canReuseRedirectChain(); | 225 bool canReuseRedirectChain(); |
| 223 bool mustRevalidateDueToCacheHeaders(); | 226 bool mustRevalidateDueToCacheHeaders(); |
| 224 bool canUseCacheValidator(); | 227 bool canUseCacheValidator(); |
| 225 bool isCacheValidator() const { return m_isRevalidating; } | 228 bool isCacheValidator() const { return m_isRevalidating; } |
| 226 bool hasCacheControlNoStoreHeader() const; | 229 bool hasCacheControlNoStoreHeader() const; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 246 | 249 |
| 247 virtual bool canReuse(const ResourceRequest&) const { return true; } | 250 virtual bool canReuse(const ResourceRequest&) const { return true; } |
| 248 | 251 |
| 249 // Used by the MemoryCache to reduce the memory consumption of the entry. | 252 // Used by the MemoryCache to reduce the memory consumption of the entry. |
| 250 void prune(); | 253 void prune(); |
| 251 | 254 |
| 252 virtual void onMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*) const; | 255 virtual void onMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*) const; |
| 253 | 256 |
| 254 static const char* resourceTypeToString(Type, const FetchInitiatorInfo&); | 257 static const char* resourceTypeToString(Type, const FetchInitiatorInfo&); |
| 255 | 258 |
| 259 void testOnlyWillAddClientOrObserver(PreloadReferencePolicy policy) { willAd dClientOrObserver(policy); } | |
|
Yoav Weiss
2016/09/13 09:33:18
Adding this test only method, since adding an actu
Nate Chapin
2016/09/13 22:34:17
...this is all single threaded, isn't it? This exp
Charlie Harrison
2016/09/16 12:18:47
I think a "ForTesting" suffix is more common and I
Charlie Harrison
2016/09/16 12:31:38
Apologies this was a very out of date draft commen
| |
| 260 | |
| 256 protected: | 261 protected: |
| 257 Resource(const ResourceRequest&, Type, const ResourceLoaderOptions&); | 262 Resource(const ResourceRequest&, Type, const ResourceLoaderOptions&); |
| 258 | 263 |
| 259 virtual void checkNotify(); | 264 virtual void checkNotify(); |
| 260 | 265 |
| 261 enum class MarkFinishedOption { | 266 enum class MarkFinishedOption { |
| 262 ShouldMarkFinished, | 267 ShouldMarkFinished, |
| 263 DoNotMarkFinished | 268 DoNotMarkFinished |
| 264 }; | 269 }; |
| 265 void notifyClientsInternal(MarkFinishedOption); | 270 void notifyClientsInternal(MarkFinishedOption); |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 392 | 397 |
| 393 Resource::Type m_type; | 398 Resource::Type m_type; |
| 394 }; | 399 }; |
| 395 | 400 |
| 396 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ | 401 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ |
| 397 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType( ) == Resource::typeName, resource.getType() == Resource::typeName); | 402 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->getType( ) == Resource::typeName, resource.getType() == Resource::typeName); |
| 398 | 403 |
| 399 } // namespace blink | 404 } // namespace blink |
| 400 | 405 |
| 401 #endif | 406 #endif |
| OLD | NEW |