| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 void RecalcOverflowAfterStyleChange(); | 203 void RecalcOverflowAfterStyleChange(); |
| 204 | 204 |
| 205 bool IsEnclosedInCompositingLayer() const; | 205 bool IsEnclosedInCompositingLayer() const; |
| 206 | 206 |
| 207 void Dispose() override; | 207 void Dispose() override; |
| 208 void DetachScrollbars(); | 208 void DetachScrollbars(); |
| 209 void RecalculateCustomScrollbarStyle(); | 209 void RecalculateCustomScrollbarStyle(); |
| 210 void InvalidateAllCustomScrollbarsOnActiveChanged(); | 210 void InvalidateAllCustomScrollbarsOnActiveChanged(); |
| 211 | 211 |
| 212 void Clear(); | |
| 213 | |
| 214 // True if the FrameView's base background color is completely opaque. | 212 // True if the FrameView's base background color is completely opaque. |
| 215 bool HasOpaqueBackground() const; | 213 bool HasOpaqueBackground() const; |
| 216 | 214 |
| 217 Color BaseBackgroundColor() const; | 215 Color BaseBackgroundColor() const; |
| 218 void SetBaseBackgroundColor(const Color&); | 216 void SetBaseBackgroundColor(const Color&); |
| 219 void UpdateBaseBackgroundColorRecursively(const Color&); | 217 void UpdateBaseBackgroundColorRecursively(const Color&); |
| 220 | 218 |
| 221 void AdjustViewSize(); | 219 void AdjustViewSize(); |
| 222 void AdjustViewSizeAndLayout(); | 220 void AdjustViewSizeAndLayout(); |
| 223 | 221 |
| (...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1268 frame_or_plugin.IsFrameView()); | 1266 frame_or_plugin.IsFrameView()); |
| 1269 DEFINE_TYPE_CASTS(FrameView, | 1267 DEFINE_TYPE_CASTS(FrameView, |
| 1270 ScrollableArea, | 1268 ScrollableArea, |
| 1271 scrollableArea, | 1269 scrollableArea, |
| 1272 scrollableArea->IsFrameView(), | 1270 scrollableArea->IsFrameView(), |
| 1273 scrollableArea.IsFrameView()); | 1271 scrollableArea.IsFrameView()); |
| 1274 | 1272 |
| 1275 } // namespace blink | 1273 } // namespace blink |
| 1276 | 1274 |
| 1277 #endif // FrameView_h | 1275 #endif // FrameView_h |
| OLD | NEW |