| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 RenderObject* layoutRoot(bool onlyDuringLayout = false) const; | 105 RenderObject* layoutRoot(bool onlyDuringLayout = false) const; |
| 106 void clearLayoutRoot() { m_layoutRoot = 0; } | 106 void clearLayoutRoot() { m_layoutRoot = 0; } |
| 107 int layoutCount() const { return m_layoutCount; } | 107 int layoutCount() const { return m_layoutCount; } |
| 108 | 108 |
| 109 bool needsLayout() const; | 109 bool needsLayout() const; |
| 110 void setNeedsLayout(); | 110 void setNeedsLayout(); |
| 111 | 111 |
| 112 bool needsFullRepaint() const { return m_doFullRepaint; } | 112 bool needsFullRepaint() const { return m_doFullRepaint; } |
| 113 | 113 |
| 114 #if ENABLE(REQUEST_ANIMATION_FRAME) | 114 #if ENABLE(REQUEST_ANIMATION_FRAME) |
| 115 void serviceScriptedAnimations(double monotonicAnimationStartTime); | 115 void serviceScriptedAnimations(DOMTimeStamp); |
| 116 #endif | 116 #endif |
| 117 | 117 |
| 118 #if USE(ACCELERATED_COMPOSITING) | 118 #if USE(ACCELERATED_COMPOSITING) |
| 119 void updateCompositingLayersAfterStyleChange(); | 119 void updateCompositingLayersAfterStyleChange(); |
| 120 void updateCompositingLayersAfterLayout(); | 120 void updateCompositingLayersAfterLayout(); |
| 121 bool syncCompositingStateForThisFrame(Frame* rootFrameForSync); | 121 bool syncCompositingStateForThisFrame(Frame* rootFrameForSync); |
| 122 | 122 |
| 123 void clearBackingStores(); | 123 void clearBackingStores(); |
| 124 void restoreBackingStores(); | 124 void restoreBackingStores(); |
| 125 | 125 |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 } | 560 } |
| 561 | 561 |
| 562 inline LayoutUnit FrameView::mapFromCSSToLayoutUnits(int value) | 562 inline LayoutUnit FrameView::mapFromCSSToLayoutUnits(int value) |
| 563 { | 563 { |
| 564 return value * m_frame->pageZoomFactor() * m_frame->frameScaleFactor(); | 564 return value * m_frame->pageZoomFactor() * m_frame->frameScaleFactor(); |
| 565 } | 565 } |
| 566 | 566 |
| 567 } // namespace WebCore | 567 } // namespace WebCore |
| 568 | 568 |
| 569 #endif // FrameView_h | 569 #endif // FrameView_h |
| OLD | NEW |