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

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

Issue 153233002: *** DO NOT LAND *** Remove regions support, keeping a bare minimum to support "region-based"... (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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 | « Source/core/rendering/FixedTableLayout.cpp ('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 7f56615d7dec0ca3add99d5a434076d01a20e1c5..1b1372b29b17ee9103d2c5b647ebbd81705777cc 100644
--- a/Source/core/rendering/FlowThreadController.h
+++ b/Source/core/rendering/FlowThreadController.h
@@ -30,69 +30,26 @@
#ifndef FlowThreadController_h
#define FlowThreadController_h
-#include "core/rendering/RenderView.h"
-#include "wtf/ListHashSet.h"
-#include "wtf/OwnPtr.h"
+#include "wtf/FastAllocBase.h"
+#include "wtf/PassOwnPtr.h"
namespace WebCore {
class RenderFlowThread;
-class RenderNamedFlowThread;
-
-typedef ListHashSet<RenderNamedFlowThread*> RenderNamedFlowThreadList;
class FlowThreadController {
WTF_MAKE_FAST_ALLOCATED;
public:
- static PassOwnPtr<FlowThreadController> create(RenderView*);
- ~FlowThreadController();
+ static PassOwnPtr<FlowThreadController> create();
RenderFlowThread* currentRenderFlowThread() const { return m_currentRenderFlowThread; }
void setCurrentRenderFlowThread(RenderFlowThread* flowThread) { m_currentRenderFlowThread = flowThread; }
- bool isRenderNamedFlowThreadOrderDirty() const { return m_isRenderNamedFlowThreadOrderDirty; }
- void setIsRenderNamedFlowThreadOrderDirty(bool dirty)
- {
- m_isRenderNamedFlowThreadOrderDirty = dirty;
- if (dirty)
- m_view->setNeedsLayout();
- }
-
- RenderNamedFlowThread* ensureRenderFlowThreadWithName(const AtomicString&);
- const RenderNamedFlowThreadList* renderNamedFlowThreadList() const { return m_renderNamedFlowThreadList.get(); }
- bool hasRenderNamedFlowThreads() const { return m_renderNamedFlowThreadList && !m_renderNamedFlowThreadList->isEmpty(); }
- void layoutRenderNamedFlowThreads();
- void styleDidChange();
-
- void registerNamedFlowContentNode(Node*, RenderNamedFlowThread*);
- void unregisterNamedFlowContentNode(Node*);
- bool isContentNodeRegisteredWithAnyNamedFlow(const Node*) const;
-
- bool hasFlowThreadsWithAutoLogicalHeightRegions() const { return m_flowThreadsWithAutoLogicalHeightRegions; }
- void incrementFlowThreadsWithAutoLogicalHeightRegions() { ++m_flowThreadsWithAutoLogicalHeightRegions; }
- void decrementFlowThreadsWithAutoLogicalHeightRegions() { ASSERT(m_flowThreadsWithAutoLogicalHeightRegions > 0); --m_flowThreadsWithAutoLogicalHeightRegions; }
-
- bool updateFlowThreadsNeedingLayout();
- bool updateFlowThreadsNeedingTwoStepLayout();
- void updateFlowThreadsIntoConstrainedPhase();
-
-#ifndef NDEBUG
- bool isAutoLogicalHeightRegionsCountConsistent() const;
-#endif
-
protected:
- FlowThreadController(RenderView*);
- void updateFlowThreadsChainIfNecessary();
- void resetFlowThreadsWithAutoHeightRegions();
+ FlowThreadController();
private:
- RenderView* m_view;
RenderFlowThread* m_currentRenderFlowThread;
- bool m_isRenderNamedFlowThreadOrderDirty;
- unsigned m_flowThreadsWithAutoLogicalHeightRegions;
- OwnPtr<RenderNamedFlowThreadList> m_renderNamedFlowThreadList;
- // maps a content node to its render flow thread.
- HashMap<const Node*, RenderNamedFlowThread*> m_mapNamedFlowContentNodes;
};
}
« no previous file with comments | « Source/core/rendering/FixedTableLayout.cpp ('k') | Source/core/rendering/FlowThreadController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698