| 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 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 #endif | 1136 #endif |
| 1137 | 1137 |
| 1138 ScrollbarMode horizontal_scrollbar_mode_; | 1138 ScrollbarMode horizontal_scrollbar_mode_; |
| 1139 ScrollbarMode vertical_scrollbar_mode_; | 1139 ScrollbarMode vertical_scrollbar_mode_; |
| 1140 | 1140 |
| 1141 bool horizontal_scrollbar_lock_; | 1141 bool horizontal_scrollbar_lock_; |
| 1142 bool vertical_scrollbar_lock_; | 1142 bool vertical_scrollbar_lock_; |
| 1143 | 1143 |
| 1144 ChildrenSet children_; | 1144 ChildrenSet children_; |
| 1145 PluginsSet plugins_; | 1145 PluginsSet plugins_; |
| 1146 ScrollbarSet scrollbars_; |
| 1146 | 1147 |
| 1147 ScrollOffset pending_scroll_delta_; | 1148 ScrollOffset pending_scroll_delta_; |
| 1148 ScrollOffset scroll_offset_; | 1149 ScrollOffset scroll_offset_; |
| 1149 IntSize contents_size_; | 1150 IntSize contents_size_; |
| 1150 | 1151 |
| 1151 bool scrollbars_suppressed_; | 1152 bool scrollbars_suppressed_; |
| 1152 | 1153 |
| 1153 bool in_update_scrollbars_; | 1154 bool in_update_scrollbars_; |
| 1154 | 1155 |
| 1155 std::unique_ptr<LayoutAnalyzer> analyzer_; | 1156 std::unique_ptr<LayoutAnalyzer> analyzer_; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1266 frameViewBase.IsFrameView()); | 1267 frameViewBase.IsFrameView()); |
| 1267 DEFINE_TYPE_CASTS(FrameView, | 1268 DEFINE_TYPE_CASTS(FrameView, |
| 1268 ScrollableArea, | 1269 ScrollableArea, |
| 1269 scrollableArea, | 1270 scrollableArea, |
| 1270 scrollableArea->IsFrameView(), | 1271 scrollableArea->IsFrameView(), |
| 1271 scrollableArea.IsFrameView()); | 1272 scrollableArea.IsFrameView()); |
| 1272 | 1273 |
| 1273 } // namespace blink | 1274 } // namespace blink |
| 1274 | 1275 |
| 1275 #endif // FrameView_h | 1276 #endif // FrameView_h |
| OLD | NEW |