OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
8 | 8 |
9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 virtual IntRect scrollableAreaBoundingBox() const OVERRIDE; | 315 virtual IntRect scrollableAreaBoundingBox() const OVERRIDE; |
316 virtual bool scrollAnimatorEnabled() const OVERRIDE; | 316 virtual bool scrollAnimatorEnabled() const OVERRIDE; |
317 virtual bool usesCompositedScrolling() const OVERRIDE; | 317 virtual bool usesCompositedScrolling() const OVERRIDE; |
318 virtual GraphicsLayer* layerForScrolling() const OVERRIDE; | 318 virtual GraphicsLayer* layerForScrolling() const OVERRIDE; |
319 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE; | 319 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE; |
320 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE; | 320 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE; |
321 virtual GraphicsLayer* layerForScrollCorner() const OVERRIDE; | 321 virtual GraphicsLayer* layerForScrollCorner() const OVERRIDE; |
322 | 322 |
323 protected: | 323 protected: |
324 virtual void scrollContentsIfNeeded(); | 324 virtual void scrollContentsIfNeeded(); |
325 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRec
t& rectToScroll) OVERRIDE; | 325 virtual bool scrollContentsFastPath(const IntSize& scrollDelta) OVERRIDE; |
326 virtual void scrollContentsSlowPath(const IntRect& updateRect) OVERRIDE; | 326 virtual void scrollContentsSlowPath(const IntRect& updateRect) OVERRIDE; |
327 | 327 |
328 virtual bool isVerticalDocument() const OVERRIDE; | 328 virtual bool isVerticalDocument() const OVERRIDE; |
329 virtual bool isFlippedDocument() const OVERRIDE; | 329 virtual bool isFlippedDocument() const OVERRIDE; |
330 | 330 |
331 private: | 331 private: |
332 explicit FrameView(LocalFrame*); | 332 explicit FrameView(LocalFrame*); |
333 | 333 |
334 void reset(); | 334 void reset(); |
335 void init(); | 335 void init(); |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 545 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
546 } | 546 } |
547 private: | 547 private: |
548 FrameView* m_view; | 548 FrameView* m_view; |
549 bool m_originalValue; | 549 bool m_originalValue; |
550 }; | 550 }; |
551 | 551 |
552 } // namespace blink | 552 } // namespace blink |
553 | 553 |
554 #endif // FrameView_h | 554 #endif // FrameView_h |
OLD | NEW |