| Index: third_party/WebKit/Source/core/fetch/Resource.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.h b/third_party/WebKit/Source/core/fetch/Resource.h
|
| index 471249d76b8b0c592d62abc1705f79024817585b..5a0504c4d5fe6e7f8d5489af885c227878b2c81c 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.h
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.h
|
| @@ -69,7 +69,6 @@ public:
|
| Raw,
|
| SVGDocument,
|
| XSLStyleSheet,
|
| - LinkPrefetch,
|
| LinkPreload,
|
| TextTrack,
|
| ImportResource,
|
| @@ -209,6 +208,8 @@ public:
|
| void increasePreloadCount() { ++m_preloadCount; }
|
| void decreasePreloadCount() { ASSERT(m_preloadCount); --m_preloadCount; }
|
|
|
| + virtual bool isPrefetch() const { return false; }
|
| +
|
| bool canReuseRedirectChain();
|
| bool mustRevalidateDueToCacheHeaders();
|
| bool canUseCacheValidator();
|
|
|