Chromium Code Reviews| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 125 | 125 |
| 126 bool needsFullPaintInvalidation() const { return m_doFullPaintInvalidation; } | 126 bool needsFullPaintInvalidation() const { return m_doFullPaintInvalidation; } |
| 127 void setNeedsFullPaintInvalidation() { m_doFullPaintInvalidation = true; } | 127 void setNeedsFullPaintInvalidation() { m_doFullPaintInvalidation = true; } |
| 128 | 128 |
| 129 void updateAcceleratedCompositingSettings(); | 129 void updateAcceleratedCompositingSettings(); |
| 130 | 130 |
| 131 void recalcOverflowAfterStyleChange(); | 131 void recalcOverflowAfterStyleChange(); |
| 132 | 132 |
| 133 bool isEnclosedInCompositingLayer() const; | 133 bool isEnclosedInCompositingLayer() const; |
| 134 | 134 |
| 135 void didChangeForceLayoutHeightMode(); | |
|
aelias_OOO_until_Jul13
2015/02/12 19:49:17
Please rename this to didChangeViewportDescription
gsennton
2015/02/13 19:11:15
This is no longer tied to the more general setting
| |
| 136 | |
| 135 void resetScrollbars(); | 137 void resetScrollbars(); |
| 136 void prepareForDetach(); | 138 void prepareForDetach(); |
| 137 void detachCustomScrollbars(); | 139 void detachCustomScrollbars(); |
| 138 void recalculateCustomScrollbarStyle(); | 140 void recalculateCustomScrollbarStyle(); |
| 139 void invalidateAllCustomScrollbarsOnActiveChanged(); | 141 void invalidateAllCustomScrollbarsOnActiveChanged(); |
| 140 virtual void recalculateScrollbarOverlayStyle(); | 142 virtual void recalculateScrollbarOverlayStyle(); |
| 141 | 143 |
| 142 void clear(); | 144 void clear(); |
| 143 | 145 |
| 144 bool isTransparent() const; | 146 bool isTransparent() const; |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 877 } | 879 } |
| 878 | 880 |
| 879 private: | 881 private: |
| 880 RawPtrWillBeMember<FrameView> m_view; | 882 RawPtrWillBeMember<FrameView> m_view; |
| 881 bool m_originalValue; | 883 bool m_originalValue; |
| 882 }; | 884 }; |
| 883 | 885 |
| 884 } // namespace blink | 886 } // namespace blink |
| 885 | 887 |
| 886 #endif // FrameView_h | 888 #endif // FrameView_h |
| OLD | NEW |