| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 float inputEventsScaleFactor() const; | 131 float inputEventsScaleFactor() const; |
| 132 IntSize inputEventsOffsetForEmulation() const; | 132 IntSize inputEventsOffsetForEmulation() const; |
| 133 void setInputEventsTransformForEmulation(const IntSize&, float); | 133 void setInputEventsTransformForEmulation(const IntSize&, float); |
| 134 | 134 |
| 135 AtomicString mediaType() const; | 135 AtomicString mediaType() const; |
| 136 void setMediaType(const AtomicString&); | 136 void setMediaType(const AtomicString&); |
| 137 | 137 |
| 138 void postLayoutTimerFired(Timer<FrameView>*); | 138 void postLayoutTimerFired(Timer<FrameView>*); |
| 139 | 139 |
| 140 #if !ENABLE(COMPOSITOR) | |
| 141 void paint(GraphicsContext* context, const IntRect& rect) override; | 140 void paint(GraphicsContext* context, const IntRect& rect) override; |
| 142 #endif | |
| 143 | 141 |
| 144 void paintContents(GraphicsContext*, const IntRect& damageRect); | 142 void paintContents(GraphicsContext*, const IntRect& damageRect); |
| 145 void setPaintBehavior(PaintBehavior); | 143 void setPaintBehavior(PaintBehavior); |
| 146 PaintBehavior paintBehavior() const; | 144 PaintBehavior paintBehavior() const; |
| 147 bool isPainting() const; | 145 bool isPainting() const; |
| 148 bool hasEverPainted() const { return m_lastPaintTime; } | 146 bool hasEverPainted() const { return m_lastPaintTime; } |
| 149 void setNodeToDraw(Node*); | 147 void setNodeToDraw(Node*); |
| 150 | 148 |
| 151 Color documentBackgroundColor() const; | 149 Color documentBackgroundColor() const; |
| 152 | 150 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); | 330 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); |
| 333 } | 331 } |
| 334 private: | 332 private: |
| 335 FrameView* m_view; | 333 FrameView* m_view; |
| 336 bool m_originalValue; | 334 bool m_originalValue; |
| 337 }; | 335 }; |
| 338 | 336 |
| 339 } // namespace blink | 337 } // namespace blink |
| 340 | 338 |
| 341 #endif // SKY_ENGINE_CORE_FRAME_FRAMEVIEW_H_ | 339 #endif // SKY_ENGINE_CORE_FRAME_FRAMEVIEW_H_ |
| OLD | NEW |