| 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 | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights |
| 8 reserved. | 8 reserved. |
| 9 | 9 |
| 10 This library is free software; you can redistribute it and/or | 10 This library is free software; you can redistribute it and/or |
| (...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 ViewportConstrainedObjectSet m_backgroundAttachmentFixedObjects; | 1097 ViewportConstrainedObjectSet m_backgroundAttachmentFixedObjects; |
| 1098 Member<FrameViewAutoSizeInfo> m_autoSizeInfo; | 1098 Member<FrameViewAutoSizeInfo> m_autoSizeInfo; |
| 1099 | 1099 |
| 1100 IntSize m_inputEventsOffsetForEmulation; | 1100 IntSize m_inputEventsOffsetForEmulation; |
| 1101 float m_inputEventsScaleFactorForEmulation; | 1101 float m_inputEventsScaleFactorForEmulation; |
| 1102 | 1102 |
| 1103 IntSize m_layoutSize; | 1103 IntSize m_layoutSize; |
| 1104 IntSize m_initialViewportSize; | 1104 IntSize m_initialViewportSize; |
| 1105 bool m_layoutSizeFixedToFrameSize; | 1105 bool m_layoutSizeFixedToFrameSize; |
| 1106 | 1106 |
| 1107 Timer<FrameView> m_didScrollTimer; | 1107 TaskRunnerTimer<FrameView> m_didScrollTimer; |
| 1108 | 1108 |
| 1109 Vector<IntRect> m_tickmarks; | 1109 Vector<IntRect> m_tickmarks; |
| 1110 | 1110 |
| 1111 bool m_needsUpdateWidgetGeometries; | 1111 bool m_needsUpdateWidgetGeometries; |
| 1112 | 1112 |
| 1113 #if DCHECK_IS_ON() | 1113 #if DCHECK_IS_ON() |
| 1114 // Verified when finalizing. | 1114 // Verified when finalizing. |
| 1115 bool m_hasBeenDisposed = false; | 1115 bool m_hasBeenDisposed = false; |
| 1116 #endif | 1116 #endif |
| 1117 | 1117 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 widget.isFrameView()); | 1251 widget.isFrameView()); |
| 1252 DEFINE_TYPE_CASTS(FrameView, | 1252 DEFINE_TYPE_CASTS(FrameView, |
| 1253 ScrollableArea, | 1253 ScrollableArea, |
| 1254 scrollableArea, | 1254 scrollableArea, |
| 1255 scrollableArea->isFrameView(), | 1255 scrollableArea->isFrameView(), |
| 1256 scrollableArea.isFrameView()); | 1256 scrollableArea.isFrameView()); |
| 1257 | 1257 |
| 1258 } // namespace blink | 1258 } // namespace blink |
| 1259 | 1259 |
| 1260 #endif // FrameView_h | 1260 #endif // FrameView_h |
| OLD | NEW |