Chromium Code Reviews

Unified Diff: Source/core/rendering/FlowThreadController.h

Issue 18080016: [CSS Regions] Elements in a region should be assignable to a named flow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed failing test (fullscreen issue), added SVG test Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/dom/PseudoElement.h ('k') | Source/core/rendering/FlowThreadController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/FlowThreadController.h
diff --git a/Source/core/rendering/FlowThreadController.h b/Source/core/rendering/FlowThreadController.h
index c0b6a1bbdcda1dba993e7973f160b6ec7007cf26..0f014cdb062b061f2540781d5878d59f9f2c9fd1 100644
--- a/Source/core/rendering/FlowThreadController.h
+++ b/Source/core/rendering/FlowThreadController.h
@@ -66,6 +66,7 @@ public:
void registerNamedFlowContentNode(Node*, RenderNamedFlowThread*);
void unregisterNamedFlowContentNode(Node*);
+ bool isContentNodeRegisteredWithAnyNamedFlow(const Node*) const;
bool hasFlowThreadsWithAutoLogicalHeightRegions() const { return m_flowThreadsWithAutoLogicalHeightRegions; }
void incrementFlowThreadsWithAutoLogicalHeightRegions() { ++m_flowThreadsWithAutoLogicalHeightRegions; }
@@ -91,7 +92,7 @@ private:
unsigned m_flowThreadsWithAutoLogicalHeightRegions;
OwnPtr<RenderNamedFlowThreadList> m_renderNamedFlowThreadList;
// maps a content node to its render flow thread.
- HashMap<Node*, RenderNamedFlowThread*> m_mapNamedFlowContentNodes;
+ HashMap<const Node*, RenderNamedFlowThread*> m_mapNamedFlowContentNodes;
};
}
« no previous file with comments | « Source/core/dom/PseudoElement.h ('k') | Source/core/rendering/FlowThreadController.cpp » ('j') | no next file with comments »

Powered by Google App Engine