Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: Source/core/frame/FrameView.h

Issue 250773002: Reland "Recompute overflow after transform changes" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@build_hack
Patch Set: again... Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 void setLayoutSize(const IntSize&); 107 void setLayoutSize(const IntSize&);
108 108
109 // If this is set to false, the layout size will need to be explicitly set b y the owner. 109 // If this is set to false, the layout size will need to be explicitly set b y the owner.
110 // E.g. WebViewImpl sets its mainFrame's layout size manually 110 // E.g. WebViewImpl sets its mainFrame's layout size manually
111 void setLayoutSizeFixedToFrameSize(bool isFixed) { m_layoutSizeFixedToFrameS ize = isFixed; } 111 void setLayoutSizeFixedToFrameSize(bool isFixed) { m_layoutSizeFixedToFrameS ize = isFixed; }
112 bool layoutSizeFixedToFrameSize() { return m_layoutSizeFixedToFrameSize; } 112 bool layoutSizeFixedToFrameSize() { return m_layoutSizeFixedToFrameSize; }
113 113
114 bool needsFullRepaint() const { return m_doFullRepaint; } 114 bool needsFullRepaint() const { return m_doFullRepaint; }
115 115
116 void updateAcceleratedCompositingSettings(); 116 void updateAcceleratedCompositingSettings();
117
118 void recalcOverflowAfterStyleChange();
117 void updateCompositingLayersAfterStyleChange(); 119 void updateCompositingLayersAfterStyleChange();
118 120
119 bool hasCompositedContent() const; 121 bool hasCompositedContent() const;
120 bool isEnclosedInCompositingLayer() const; 122 bool isEnclosedInCompositingLayer() const;
121 123
122 void resetScrollbars(); 124 void resetScrollbars();
123 void prepareForDetach(); 125 void prepareForDetach();
124 void detachCustomScrollbars(); 126 void detachCustomScrollbars();
125 virtual void recalculateScrollbarOverlayStyle(); 127 virtual void recalculateScrollbarOverlayStyle();
126 128
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 m_view->setCanRepaintDuringPerformLayout(m_originalValue); 563 m_view->setCanRepaintDuringPerformLayout(m_originalValue);
562 } 564 }
563 private: 565 private:
564 FrameView* m_view; 566 FrameView* m_view;
565 bool m_originalValue; 567 bool m_originalValue;
566 }; 568 };
567 569
568 } // namespace WebCore 570 } // namespace WebCore
569 571
570 #endif // FrameView_h 572 #endif // FrameView_h
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698