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

Side by Side 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, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 10 matching lines...) Expand all
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 * 23 *
24 */ 24 */
25 25
26 #ifndef ComputedStyleConstants_h 26 #ifndef ComputedStyleConstants_h
27 #define ComputedStyleConstants_h 27 #define ComputedStyleConstants_h
28 28
29 namespace blink { 29 namespace blink {
30 30
31 // GreenWeb QoSType
32 enum EQoSType { DISCRETE, CONTINUOUS }; // Can't define SINGLE, which is used by EBoxLines. Use DISCRETE instead.
33 enum EQoSDuration { SHORT, LONG };
34
35 typedef EQoSType EOnclickType;
36 typedef EQoSDuration EOnclickVduration;
37 typedef EQoSType EOnscrollType;
38 typedef EQoSDuration EOnscrollVduration;
39 typedef EQoSType EOntouchstartType;
40 typedef EQoSDuration EOntouchstartVduration;
41 typedef EQoSType EOntouchendType;
42 typedef EQoSDuration EOntouchendVduration;
43 typedef EQoSType EOntouchmoveType;
44 typedef EQoSDuration EOntouchmoveVduration;
45
31 // Sides used when drawing borders and outlines. The values should run clockwise from top. 46 // Sides used when drawing borders and outlines. The values should run clockwise from top.
32 enum BoxSide { 47 enum BoxSide {
33 BSTop, 48 BSTop,
34 BSRight, 49 BSRight,
35 BSBottom, 50 BSBottom,
36 BSLeft 51 BSLeft
37 }; 52 };
38 53
39 enum StyleRecalcChange { 54 enum StyleRecalcChange {
40 NoChange, 55 NoChange,
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 553
539 enum ScrollSnapType { 554 enum ScrollSnapType {
540 ScrollSnapTypeNone, 555 ScrollSnapTypeNone,
541 ScrollSnapTypeMandatory, 556 ScrollSnapTypeMandatory,
542 ScrollSnapTypeProximity 557 ScrollSnapTypeProximity
543 }; 558 };
544 559
545 } // namespace blink 560 } // namespace blink
546 561
547 #endif // ComputedStyleConstants_h 562 #endif // ComputedStyleConstants_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698