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: third_party/WebKit/Source/core/frame/FrameView.h

Issue 1549153002: Fix preferred logical widths of orthogonal writing modes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: leviw review Created 4 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 | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameView.h
diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
index 6521e00896bfc22057d122dc02b3d1d1113f00d2..d288c90756d91f22438986e82c6a504c715073cc 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -120,6 +120,10 @@ public:
bool isInPerformLayout() const;
void clearLayoutSubtreeRoot(const LayoutObject&);
+ void addOrthogonalWritingModeRoot(LayoutBox&);
+ void removeOrthogonalWritingModeRoot(LayoutBox&);
+ bool hasOrthogonalWritingModeRoots() const;
+ void layoutOrthogonalWritingModeRoots();
int layoutCount() const { return m_layoutCount; }
void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isPartial);
@@ -781,6 +785,7 @@ private:
bool m_hasPendingLayout;
LayoutSubtreeRootList m_layoutSubtreeRootList;
+ DepthOrderedLayoutObjectList m_orthogonalWritingModeRootList;
bool m_layoutSchedulingEnabled;
bool m_inSynchronousPostLayout;
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698