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

Unified Diff: Source/core/layout/LayoutInline.cpp

Issue 1124993002: Cleanup: Only need one bit (not two) to express flow thread state. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/layout/LayoutInline.cpp
diff --git a/Source/core/layout/LayoutInline.cpp b/Source/core/layout/LayoutInline.cpp
index d1b173a2e4f22b64265240f5746eec1fe6561238..5bfdcaea55e890de25b5765f9e98bcbf3b99a379 100644
--- a/Source/core/layout/LayoutInline.cpp
+++ b/Source/core/layout/LayoutInline.cpp
@@ -360,7 +360,7 @@ LayoutInline* LayoutInline::clone() const
{
LayoutInline* cloneInline = new LayoutInline(node());
cloneInline->setStyle(mutableStyle());
- cloneInline->setFlowThreadState(flowThreadState());
+ cloneInline->setIsInsideFlowThread(isInsideFlowThread());
return cloneInline;
}

Powered by Google App Engine
This is Rietveld 408576698