| Index: third_party/WebKit/Source/core/frame/LocalFrame.h
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| index 66f54b2415b936520205de13f0ff2871e5f23865..15564696b142a7b1eea65937ef58bcd176e53c99 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| @@ -59,6 +59,7 @@ class EventHandler;
|
| class FetchParameters;
|
| class FloatSize;
|
| class FrameConsole;
|
| +class FrameResourceCoordinator;
|
| class FrameSelection;
|
| class InputMethodController;
|
| class CoreProbeSink;
|
| @@ -231,6 +232,9 @@ class CORE_EXPORT LocalFrame final : public Frame,
|
| LocalFrameClient* Client() const;
|
|
|
| ContentSettingsClient* GetContentSettingsClient();
|
| + FrameResourceCoordinator* GetFrameResourceCoordinator() {
|
| + return frame_resource_coordinator_;
|
| + }
|
|
|
| PluginData* GetPluginData() const;
|
|
|
| @@ -316,6 +320,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
|
| InterfaceRegistry* const interface_registry_;
|
|
|
| IntRect remote_viewport_intersection_;
|
| + Member<FrameResourceCoordinator> frame_resource_coordinator_;
|
| };
|
|
|
| inline FrameLoader& LocalFrame::Loader() const {
|
|
|