Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
index 34c16c74dd2ec9fea8e19b823644d945433ef382..15dc9305e669b0c01aa3eecdaa33708e8868b287 100644 |
--- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
+++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
@@ -58,6 +58,8 @@ class HTMLPlugInElement; |
class HistoryItem; |
class KURL; |
class LocalFrame; |
+class LinkLoaderClient; |
Nate Chapin
2016/03/18 22:12:03
Is this needed?
Marijn Kruisselbrink
2016/03/18 22:18:37
No, it isn't. Removed.
|
+class LinkResource; |
class ResourceError; |
class ResourceRequest; |
class ResourceResponse; |
@@ -253,6 +255,7 @@ public: |
}; |
virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisablerType) { } |
+ virtual PassOwnPtrWillBeRawPtr<LinkResource> createServiceWorkerLinkResource(HTMLLinkElement*) { return nullptr; } |
}; |
} // namespace blink |