diff options
Diffstat (limited to 'WebCore/loader/Cache.cpp')
-rw-r--r-- | WebCore/loader/Cache.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/WebCore/loader/Cache.cpp b/WebCore/loader/Cache.cpp index 212fca3..539c5fc 100644 --- a/WebCore/loader/Cache.cpp +++ b/WebCore/loader/Cache.cpp @@ -30,9 +30,6 @@ #include "CachedXSLStyleSheet.h" #include "DocLoader.h" #include "Document.h" -#if USE(LOW_BANDWIDTH_DISPLAY) -#include "Frame.h" -#endif #include "FrameLoader.h" #include "FrameView.h" #include "Image.h" @@ -145,13 +142,6 @@ CachedResource* Cache::requestResource(DocLoader* docLoader, CachedResource::Typ if (resource->type() != type) return 0; -#if USE(LOW_BANDWIDTH_DISPLAY) - // addLowBandwidthDisplayRequest() returns true if requesting CSS or JS during low bandwidth display. - // Here, return 0 to not block parsing or layout. - if (docLoader->frame() && docLoader->frame()->loader()->addLowBandwidthDisplayRequest(resource)) - return 0; -#endif - if (!disabled()) { // This will move the resource to the front of its LRU list and increase its access count. resourceAccessed(resource); |