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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 1835303002: Implementation of the GreenWeb language extensions. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change GreenWeb-related CSS property names such that they apply in the desired order at runtime. Created 4 years, 9 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/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
index 66e520e3f9201bcbc03389b00dc3c847fe952649..7a9c6522c2423e9d0ef176a471786e93d4f953f7 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -35,7 +35,7 @@ namespace blink {
class SameSizeStyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
public:
float floats[3];
- int integers;
+ int integers[11];
LengthPoint lengthPoints[2];
LineClampValue lineClamps;
@@ -72,6 +72,16 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, m_perspective(ComputedStyle::initialPerspective())
, m_shapeImageThreshold(ComputedStyle::initialShapeImageThreshold())
, m_order(ComputedStyle::initialOrder())
+ , m_onclickVpi(ComputedStyle::initialOnclickVpi())
+ , m_onclickVpu(ComputedStyle::initialOnclickVpu())
+ , m_onscrollVpi(ComputedStyle::initialOnscrollVpi())
+ , m_onscrollVpu(ComputedStyle::initialOnscrollVpu())
+ , m_ontouchstartVpi(ComputedStyle::initialOntouchstartVpi())
+ , m_ontouchstartVpu(ComputedStyle::initialOntouchstartVpu())
+ , m_ontouchendVpi(ComputedStyle::initialOntouchendVpi())
+ , m_ontouchendVpu(ComputedStyle::initialOntouchendVpu())
+ , m_ontouchmoveVpi(ComputedStyle::initialOntouchmoveVpi())
+ , m_ontouchmoveVpu(ComputedStyle::initialOntouchmoveVpu())
, m_perspectiveOrigin(ComputedStyle::initialPerspectiveOrigin())
, m_objectPosition(ComputedStyle::initialObjectPosition())
, lineClamp(ComputedStyle::initialLineClamp())
@@ -136,6 +146,16 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, m_perspective(o.m_perspective)
, m_shapeImageThreshold(o.m_shapeImageThreshold)
, m_order(o.m_order)
+ , m_onclickVpi(o.m_onclickVpi)
+ , m_onclickVpu(o.m_onclickVpu)
+ , m_onscrollVpi(o.m_onscrollVpi)
+ , m_onscrollVpu(o.m_onscrollVpu)
+ , m_ontouchstartVpi(o.m_ontouchstartVpi)
+ , m_ontouchstartVpu(o.m_ontouchstartVpu)
+ , m_ontouchendVpi(o.m_ontouchendVpi)
+ , m_ontouchendVpu(o.m_ontouchendVpu)
+ , m_ontouchmoveVpi(o.m_ontouchmoveVpi)
+ , m_ontouchmoveVpu(o.m_ontouchmoveVpu)
, m_perspectiveOrigin(o.m_perspectiveOrigin)
, m_objectPosition(o.m_objectPosition)
, lineClamp(o.lineClamp)
@@ -229,6 +249,16 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& m_perspective == o.m_perspective
&& m_shapeImageThreshold == o.m_shapeImageThreshold
&& m_order == o.m_order
+ && m_onclickVpi == o.m_onclickVpi
+ && m_onclickVpu == o.m_onclickVpu
+ && m_onscrollVpi == o.m_onscrollVpi
+ && m_onscrollVpu == o.m_onscrollVpu
+ && m_ontouchstartVpi == o.m_ontouchstartVpi
+ && m_ontouchstartVpu == o.m_ontouchstartVpu
+ && m_ontouchendVpi == o.m_ontouchendVpi
+ && m_ontouchendVpu == o.m_ontouchendVpu
+ && m_ontouchmoveVpi == o.m_ontouchmoveVpi
+ && m_ontouchmoveVpu == o.m_ontouchmoveVpu
&& m_perspectiveOrigin == o.m_perspectiveOrigin
&& m_objectPosition == o.m_objectPosition
&& lineClamp == o.lineClamp
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698