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

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

Issue 254883003: [New Multicolumn] Faster and more direct RenderMultiColumnSet::multiColumnFlowThread(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Also call multiColumnFlowThread() in favor of multicolBlock->multiColumnFlowThread() Created 6 years, 8 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
Index: Source/core/rendering/RenderFlowThread.h
diff --git a/Source/core/rendering/RenderFlowThread.h b/Source/core/rendering/RenderFlowThread.h
index c9668079d658748fab9363fbeda6163552970339..849190137b0722aa61860c85397bcfbe39f28050 100644
--- a/Source/core/rendering/RenderFlowThread.h
+++ b/Source/core/rendering/RenderFlowThread.h
@@ -59,6 +59,11 @@ public:
virtual bool isRenderFlowThread() const OVERRIDE FINAL { return true; }
+#ifndef NDEBUG
+ // This one is only used in assertions at the moment.
rune 2014/04/30 11:00:12 "one" -> "method"
mstensho (USE GERRIT) 2014/04/30 11:05:06 Done.
+ virtual bool isRenderMultiColumnFlowThread() const { return false; }
+#endif // NDEBUG
+
virtual void layout() OVERRIDE FINAL;
// Always create a RenderLayer for the RenderFlowThread so that we

Powered by Google App Engine
This is Rietveld 408576698