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

Side by Side Diff: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 1076353003: Remove -webkit-user-drag (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: First patch didn't seem to appear? Created 5 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
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 , m_order(RenderStyle::initialOrder()) 42 , m_order(RenderStyle::initialOrder())
43 , m_objectPosition(RenderStyle::initialObjectPosition()) 43 , m_objectPosition(RenderStyle::initialObjectPosition())
44 , m_transformStyle3D(RenderStyle::initialTransformStyle3D()) 44 , m_transformStyle3D(RenderStyle::initialTransformStyle3D())
45 , m_backfaceVisibility(RenderStyle::initialBackfaceVisibility()) 45 , m_backfaceVisibility(RenderStyle::initialBackfaceVisibility())
46 , m_alignContent(RenderStyle::initialAlignContent()) 46 , m_alignContent(RenderStyle::initialAlignContent())
47 , m_alignItems(RenderStyle::initialAlignItems()) 47 , m_alignItems(RenderStyle::initialAlignItems())
48 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent()) 48 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent())
49 , m_alignSelf(RenderStyle::initialAlignSelf()) 49 , m_alignSelf(RenderStyle::initialAlignSelf())
50 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t()) 50 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t())
51 , m_justifyContent(RenderStyle::initialJustifyContent()) 51 , m_justifyContent(RenderStyle::initialJustifyContent())
52 , userDrag(RenderStyle::initialUserDrag())
53 , textOverflow(RenderStyle::initialTextOverflow()) 52 , textOverflow(RenderStyle::initialTextOverflow())
54 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle()) 53 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle())
55 , m_wrapFlow(RenderStyle::initialWrapFlow()) 54 , m_wrapFlow(RenderStyle::initialWrapFlow())
56 , m_wrapThrough(RenderStyle::initialWrapThrough()) 55 , m_wrapThrough(RenderStyle::initialWrapThrough())
57 , m_hasAspectRatio(false) 56 , m_hasAspectRatio(false)
58 , m_touchAction(RenderStyle::initialTouchAction()) 57 , m_touchAction(RenderStyle::initialTouchAction())
59 , m_objectFit(RenderStyle::initialObjectFit()) 58 , m_objectFit(RenderStyle::initialObjectFit())
60 , m_justifyItems(RenderStyle::initialJustifyItems()) 59 , m_justifyItems(RenderStyle::initialJustifyItems())
61 , m_justifyItemsOverflowAlignment(RenderStyle::initialJustifyItemsOverflowAl ignment()) 60 , m_justifyItemsOverflowAlignment(RenderStyle::initialJustifyItemsOverflowAl ignment())
62 , m_justifyItemsPositionType(RenderStyle::initialJustifyItemsPositionType()) 61 , m_justifyItemsPositionType(RenderStyle::initialJustifyItemsPositionType())
(...skipping 23 matching lines...) Expand all
86 , m_order(o.m_order) 85 , m_order(o.m_order)
87 , m_objectPosition(o.m_objectPosition) 86 , m_objectPosition(o.m_objectPosition)
88 , m_transformStyle3D(o.m_transformStyle3D) 87 , m_transformStyle3D(o.m_transformStyle3D)
89 , m_backfaceVisibility(o.m_backfaceVisibility) 88 , m_backfaceVisibility(o.m_backfaceVisibility)
90 , m_alignContent(o.m_alignContent) 89 , m_alignContent(o.m_alignContent)
91 , m_alignItems(o.m_alignItems) 90 , m_alignItems(o.m_alignItems)
92 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment) 91 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment)
93 , m_alignSelf(o.m_alignSelf) 92 , m_alignSelf(o.m_alignSelf)
94 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment) 93 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment)
95 , m_justifyContent(o.m_justifyContent) 94 , m_justifyContent(o.m_justifyContent)
96 , userDrag(o.userDrag)
97 , textOverflow(o.textOverflow) 95 , textOverflow(o.textOverflow)
98 , m_textDecorationStyle(o.m_textDecorationStyle) 96 , m_textDecorationStyle(o.m_textDecorationStyle)
99 , m_wrapFlow(o.m_wrapFlow) 97 , m_wrapFlow(o.m_wrapFlow)
100 , m_wrapThrough(o.m_wrapThrough) 98 , m_wrapThrough(o.m_wrapThrough)
101 , m_hasAspectRatio(o.m_hasAspectRatio) 99 , m_hasAspectRatio(o.m_hasAspectRatio)
102 , m_touchAction(o.m_touchAction) 100 , m_touchAction(o.m_touchAction)
103 , m_objectFit(o.m_objectFit) 101 , m_objectFit(o.m_objectFit)
104 , m_justifyItems(o.m_justifyItems) 102 , m_justifyItems(o.m_justifyItems)
105 , m_justifyItemsOverflowAlignment(o.m_justifyItemsOverflowAlignment) 103 , m_justifyItemsOverflowAlignment(o.m_justifyItemsOverflowAlignment)
106 , m_justifyItemsPositionType(o.m_justifyItemsPositionType) 104 , m_justifyItemsPositionType(o.m_justifyItemsPositionType)
(...skipping 27 matching lines...) Expand all
134 && m_order == o.m_order 132 && m_order == o.m_order
135 && m_objectPosition == o.m_objectPosition 133 && m_objectPosition == o.m_objectPosition
136 && m_transformStyle3D == o.m_transformStyle3D 134 && m_transformStyle3D == o.m_transformStyle3D
137 && m_backfaceVisibility == o.m_backfaceVisibility 135 && m_backfaceVisibility == o.m_backfaceVisibility
138 && m_alignContent == o.m_alignContent 136 && m_alignContent == o.m_alignContent
139 && m_alignItems == o.m_alignItems 137 && m_alignItems == o.m_alignItems
140 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment 138 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment
141 && m_alignSelf == o.m_alignSelf 139 && m_alignSelf == o.m_alignSelf
142 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment 140 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment
143 && m_justifyContent == o.m_justifyContent 141 && m_justifyContent == o.m_justifyContent
144 && userDrag == o.userDrag
145 && textOverflow == o.textOverflow 142 && textOverflow == o.textOverflow
146 && m_textDecorationStyle == o.m_textDecorationStyle 143 && m_textDecorationStyle == o.m_textDecorationStyle
147 && m_wrapFlow == o.m_wrapFlow 144 && m_wrapFlow == o.m_wrapFlow
148 && m_wrapThrough == o.m_wrapThrough 145 && m_wrapThrough == o.m_wrapThrough
149 && m_hasAspectRatio == o.m_hasAspectRatio 146 && m_hasAspectRatio == o.m_hasAspectRatio
150 && m_touchAction == o.m_touchAction 147 && m_touchAction == o.m_touchAction
151 && m_objectFit == o.m_objectFit 148 && m_objectFit == o.m_objectFit
152 && m_justifyItems == o.m_justifyItems 149 && m_justifyItems == o.m_justifyItems
153 && m_justifyItemsOverflowAlignment == o.m_justifyItemsOverflowAlignment 150 && m_justifyItemsOverflowAlignment == o.m_justifyItemsOverflowAlignment
154 && m_justifyItemsPositionType == o.m_justifyItemsPositionType 151 && m_justifyItemsPositionType == o.m_justifyItemsPositionType
(...skipping 28 matching lines...) Expand all
183 return false; 180 return false;
184 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 181 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
185 } 182 }
186 183
187 bool StyleRareNonInheritedData::hasFilters() const 184 bool StyleRareNonInheritedData::hasFilters() const
188 { 185 {
189 return m_filter.get() && !m_filter->m_operations.isEmpty(); 186 return m_filter.get() && !m_filter->m_operations.isEmpty();
190 } 187 }
191 188
192 } // namespace blink 189 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698