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

Unified Diff: WebCore/rendering/RenderLayer.h

Issue 28077: WebKit side of merge from r41149 to r41181. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/WebKit/
Patch Set: Created 11 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebCore/rendering/RenderBlock.cpp ('k') | WebCore/rendering/RenderLayer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/rendering/RenderLayer.h
===================================================================
--- WebCore/rendering/RenderLayer.h (revision 10232)
+++ WebCore/rendering/RenderLayer.h (working copy)
@@ -217,7 +217,7 @@
RenderMarquee* marquee() const { return m_marquee; }
void suspendMarquees();
- bool isOverflowOnly() const { return m_isOverflowOnly; }
+ bool isNormalFlowOnly() const { return m_isNormalFlowOnly; }
bool requiresSlowRepaints() const;
@@ -329,9 +329,9 @@
Vector<RenderLayer*>* posZOrderList() const { return m_posZOrderList; }
Vector<RenderLayer*>* negZOrderList() const { return m_negZOrderList; }
- void dirtyOverflowList();
- void updateOverflowList();
- Vector<RenderLayer*>* overflowList() const { return m_overflowList; }
+ void dirtyNormalFlowList();
+ void updateNormalFlowList();
+ Vector<RenderLayer*>* normalFlowList() const { return m_normalFlowList; }
bool hasVisibleContent() const { return m_hasVisibleContent; }
void setHasVisibleContent(bool);
@@ -457,7 +457,7 @@
void computeScrollDimensions(bool* needHBar = 0, bool* needVBar = 0);
- bool shouldBeOverflowOnly() const;
+ bool shouldBeNormalFlowOnly() const;
virtual void valueChanged(Scrollbar*);
virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&);
@@ -543,7 +543,7 @@
// This list contains child layers that cannot create stacking contexts. For now it is just
// overflow layers, but that may change in the future.
- Vector<RenderLayer*>* m_overflowList;
+ Vector<RenderLayer*>* m_normalFlowList;
ClipRects* m_clipRects; // Cached clip rects used when painting and hit testing.
#ifndef NDEBUG
@@ -552,8 +552,8 @@
bool m_scrollDimensionsDirty : 1;
bool m_zOrderListsDirty : 1;
- bool m_overflowListDirty: 1;
- bool m_isOverflowOnly : 1;
+ bool m_normalFlowListDirty: 1;
+ bool m_isNormalFlowOnly : 1;
bool m_usedTransparency : 1; // Tracks whether we need to close a transparent layer, i.e., whether
// we ended up painting this layer or any descendants (and therefore need to
« no previous file with comments | « WebCore/rendering/RenderBlock.cpp ('k') | WebCore/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698