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

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: TestExpectations Created 5 years 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: 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 9152342e4417194c0267b7923ebe7683732647ef..c7976d155714f5ce99b660166cd3c1e6c253c787 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -29,6 +29,7 @@
#include "core/dom/DocumentLifecycle.h"
#include "core/frame/FrameViewAutoSizeInfo.h"
#include "core/frame/LayoutSubtreeRootList.h"
+#include "core/frame/OrthogonalWritingModeRootList.h"
#include "core/frame/RootFrameViewport.h"
#include "core/layout/LayoutAnalyzer.h"
#include "core/paint/PaintInvalidationCapableScrollableArea.h"
@@ -120,6 +121,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 +786,7 @@ private:
bool m_hasPendingLayout;
LayoutSubtreeRootList m_layoutSubtreeRootList;
+ OrthogonalWritingModeRootList m_orthogonalWritingModeRootList;
bool m_layoutSchedulingEnabled;
bool m_inPerformLayout;

Powered by Google App Engine
This is Rietveld 408576698