| 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 eb05df26d52ccd4f71b4f73fe338e82810dc2dd7..a827cd2d51bb01260a4af5b871930d663dedc3ef 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| @@ -39,7 +39,6 @@
|
| #include "core/paint/PaintPhase.h"
|
| #include "platform/Supplementable.h"
|
| #include "platform/graphics/ImageOrientation.h"
|
| -#include "platform/graphics/paint/DisplayItem.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/scroll/ScrollTypes.h"
|
| #include "wtf/HashSet.h"
|
| @@ -78,7 +77,7 @@ class WebFrameHostScheduler;
|
| class WebFrameScheduler;
|
| template <typename Strategy> class PositionWithAffinityTemplate;
|
|
|
| -class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame>, public DisplayItemClient {
|
| +class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public Supplementable<LocalFrame> {
|
| USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
|
| public:
|
| static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, ServiceRegistry* = nullptr);
|
| @@ -171,11 +170,6 @@ public:
|
| bool shouldReuseDefaultView(const KURL&) const;
|
| void removeSpellingMarkersUnderWords(const Vector<String>& words);
|
|
|
| - // DisplayItemClient methods
|
| - String debugName() const final { return "LocalFrame"; }
|
| - // TODO(chrishtr): fix this.
|
| - LayoutRect visualRect() const override { return LayoutRect(); }
|
| -
|
| bool shouldThrottleRendering() const;
|
|
|
| // Returns the frame scheduler, creating one if needed.
|
|
|