| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 IntSize inputEventsOffsetForEmulation() const; | 119 IntSize inputEventsOffsetForEmulation() const; |
| 120 void setInputEventsTransformForEmulation(const IntSize&, float); | 120 void setInputEventsTransformForEmulation(const IntSize&, float); |
| 121 | 121 |
| 122 AtomicString mediaType() const; | 122 AtomicString mediaType() const; |
| 123 void setMediaType(const AtomicString&); | 123 void setMediaType(const AtomicString&); |
| 124 | 124 |
| 125 void postLayoutTimerFired(Timer<FrameView>*); | 125 void postLayoutTimerFired(Timer<FrameView>*); |
| 126 | 126 |
| 127 void paint(GraphicsContext* context, const IntRect& rect) override; | 127 void paint(GraphicsContext* context, const IntRect& rect) override; |
| 128 | 128 |
| 129 void paintContents(GraphicsContext*, const IntRect& damageRect); | |
| 130 bool isPainting() const; | 129 bool isPainting() const; |
| 131 bool hasEverPainted() const { return m_lastPaintTime; } | 130 bool hasEverPainted() const { return m_lastPaintTime; } |
| 132 | 131 |
| 133 Color documentBackgroundColor() const; | 132 Color documentBackgroundColor() const; |
| 134 | 133 |
| 135 static double currentFrameTimeStamp() { return s_currentFrameTimeStamp; } | 134 static double currentFrameTimeStamp() { return s_currentFrameTimeStamp; } |
| 136 | 135 |
| 137 void updateLayoutAndStyleForPainting(); | 136 void updateLayoutAndStyleForPainting(); |
| 138 void updateLayoutAndStyleIfNeededRecursive(); | 137 void updateLayoutAndStyleIfNeededRecursive(); |
| 139 | 138 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 bool m_layoutSizeFixedToFrameSize; | 246 bool m_layoutSizeFixedToFrameSize; |
| 248 | 247 |
| 249 Vector<IntRect> m_tickmarks; | 248 Vector<IntRect> m_tickmarks; |
| 250 }; | 249 }; |
| 251 | 250 |
| 252 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); | 251 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra
meView()); |
| 253 | 252 |
| 254 } // namespace blink | 253 } // namespace blink |
| 255 | 254 |
| 256 #endif // SKY_ENGINE_CORE_FRAME_FRAMEVIEW_H_ | 255 #endif // SKY_ENGINE_CORE_FRAME_FRAMEVIEW_H_ |
| OLD | NEW |