| Index: sky/engine/core/frame/FrameView.h
|
| diff --git a/sky/engine/core/frame/FrameView.h b/sky/engine/core/frame/FrameView.h
|
| index 29f5903fd71d8e1efecc253dc9386479c158cc5e..2da880c9391182c7c91d1d77ff946a544e62ce3c 100644
|
| --- a/sky/engine/core/frame/FrameView.h
|
| +++ b/sky/engine/core/frame/FrameView.h
|
| @@ -139,7 +139,6 @@ public:
|
|
|
| // This is different than visibleContentRect() in that it ignores negative (or overly positive)
|
| // offsets from rubber-banding, and it takes zooming into account.
|
| - LayoutRect viewportConstrainedVisibleContentRect() const;
|
| void viewportConstrainedVisibleContentSizeChanged(bool widthChanged, bool heightChanged);
|
|
|
| AtomicString mediaType() const;
|
| @@ -174,9 +173,6 @@ public:
|
| bool hasEverPainted() const { return m_lastPaintTime; }
|
| void setNodeToDraw(Node*);
|
|
|
| - // FIXME(sky): Remove
|
| - void paintOverhangAreas(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect);
|
| -
|
| Color documentBackgroundColor() const;
|
|
|
| static double currentFrameTimeStamp() { return s_currentFrameTimeStamp; }
|
| @@ -207,9 +203,6 @@ public:
|
|
|
| void setCursor(const Cursor&);
|
|
|
| - // FIXME(sky): Remove
|
| - bool scrollbarsCanBeActive() const;
|
| -
|
| // FIXME: Remove this method once plugin loading is decoupled from layout.
|
| void flushAnyPendingPostLayoutTasks();
|
|
|
| @@ -248,9 +241,6 @@ public:
|
|
|
| bool isActive() const;
|
|
|
| - // DEPRECATED: Use viewportConstrainedVisibleContentRect() instead.
|
| - IntSize scrollOffsetForFixedPosition() const;
|
| -
|
| // FIXME: This should probably be renamed as the 'inSubtreeLayout' parameter
|
| // passed around the FrameView layout methods can be true while this returns
|
| // false.
|
| @@ -290,8 +280,6 @@ public:
|
| bool scheduleAnimation();
|
| IntRect visibleContentRect(IncludeScrollbarsInRect = ExcludeScrollbars) const { return IntRect(IntPoint(), expandedIntSize(frameRect().size())); }
|
| IntSize unscaledVisibleContentSize(IncludeScrollbarsInRect = ExcludeScrollbars) const { return frameRect().size(); }
|
| - IntPoint clampScrollPosition(const IntPoint& scrollPosition) const { return scrollPosition; }
|
| - const IntPoint scrollOrigin() const { return IntPoint(); }
|
| // FIXME(sky): Not clear what values these should return. This is just what they happen to be
|
| // returning today.
|
| bool paintsEntireContents() const { return false; }
|
| @@ -350,9 +338,6 @@ private:
|
| bool wasViewportResized();
|
| void sendResizeEventIfNeeded();
|
|
|
| - // FIXME(sky): Remove now that we're not a ScrollView?
|
| - void notifyPageThatContentAreaWillPaint() const;
|
| -
|
| void scrollPositionChanged();
|
| void didScrollTimerFired(Timer<FrameView>*);
|
|
|
|
|