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

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

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
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 fb72adffadc8c319be866003a1d936e4db5d80a9..f21228321ccb117ffa7e13147e3e279747674431 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -28,6 +28,21 @@
namespace blink {
+// GreenWeb QoSType
+enum EQoSType { DISCRETE, CONTINUOUS }; // Can't define SINGLE, which is used by EBoxLines. Use DISCRETE instead.
+enum EQoSDuration { SHORT, LONG };
+
+typedef EQoSType EOnclickType;
+typedef EQoSDuration EOnclickVduration;
+typedef EQoSType EOnscrollType;
+typedef EQoSDuration EOnscrollVduration;
+typedef EQoSType EOntouchstartType;
+typedef EQoSDuration EOntouchstartVduration;
+typedef EQoSType EOntouchendType;
+typedef EQoSDuration EOntouchendVduration;
+typedef EQoSType EOntouchmoveType;
+typedef EQoSDuration EOntouchmoveVduration;
+
// Sides used when drawing borders and outlines. The values should run clockwise from top.
enum BoxSide {
BSTop,

Powered by Google App Engine
This is Rietveld 408576698