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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyleConstants.h

Issue 2907073002: Move PageSizeAuto to ComputedStyleConstants.h. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyleConstants.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
index 344ae1ae80e7997ce12e3114026ed11ca6f8676f..6843c8f06b7d994d16bd00f44ad4a6825a7dacda 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -428,6 +428,16 @@ enum ScrollSnapType {
enum AutoRepeatType { kNoAutoRepeat, kAutoFill, kAutoFit };
+// Page size type.
+// StyleRareNonInheritedData::page_size_ is meaningful only when
+// StyleRareNonInheritedData::page_size_type_ is kResolved.
+enum class PageSizeType {
+ kAuto, // size: auto
+ kLandscape, // size: landscape
+ kPortrait, // size: portrait
+ kResolved // Size is fully resolved.
+};
+
// In order to conserve memory, the border width uses fixed point,
// which can be bitpacked. This fixed point implementation is
// essentially the same as in LayoutUnit. Six bits are used for the
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698