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

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

Issue 1068383005: Remove CSSPropertySpeak (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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/StyleRareInheritedData.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, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 , m_hasAutoWidows(true) 59 , m_hasAutoWidows(true)
60 , m_hasAutoOrphans(true) 60 , m_hasAutoOrphans(true)
61 , m_textStrokeColorIsCurrentColor(true) 61 , m_textStrokeColorIsCurrentColor(true)
62 , m_textFillColorIsCurrentColor(true) 62 , m_textFillColorIsCurrentColor(true)
63 , m_textEmphasisColorIsCurrentColor(true) 63 , m_textEmphasisColorIsCurrentColor(true)
64 , userModify(READ_ONLY) 64 , userModify(READ_ONLY)
65 , wordBreak(RenderStyle::initialWordBreak()) 65 , wordBreak(RenderStyle::initialWordBreak())
66 , overflowWrap(RenderStyle::initialOverflowWrap()) 66 , overflowWrap(RenderStyle::initialOverflowWrap())
67 , lineBreak(LineBreakAuto) 67 , lineBreak(LineBreakAuto)
68 , userSelect(RenderStyle::initialUserSelect()) 68 , userSelect(RenderStyle::initialUserSelect())
69 , speak(SpeakNormal)
70 , hyphens(HyphensManual) 69 , hyphens(HyphensManual)
71 , textEmphasisFill(TextEmphasisFillFilled) 70 , textEmphasisFill(TextEmphasisFillFilled)
72 , textEmphasisMark(TextEmphasisMarkNone) 71 , textEmphasisMark(TextEmphasisMarkNone)
73 , textEmphasisPosition(TextEmphasisPositionOver) 72 , textEmphasisPosition(TextEmphasisPositionOver)
74 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 73 , m_textAlignLast(RenderStyle::initialTextAlignLast())
75 , m_textJustify(RenderStyle::initialTextJustify()) 74 , m_textJustify(RenderStyle::initialTextJustify())
76 , m_textOrientation(TextOrientationVerticalRight) 75 , m_textOrientation(TextOrientationVerticalRight)
77 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 76 , m_textIndentLine(RenderStyle::initialTextIndentLine())
78 , m_textIndentType(RenderStyle::initialTextIndentLine()) 77 , m_textIndentType(RenderStyle::initialTextIndentLine())
79 , m_lineBoxContain(RenderStyle::initialLineBoxContain()) 78 , m_lineBoxContain(RenderStyle::initialLineBoxContain())
(...skipping 23 matching lines...) Expand all
103 , m_hasAutoWidows(o.m_hasAutoWidows) 102 , m_hasAutoWidows(o.m_hasAutoWidows)
104 , m_hasAutoOrphans(o.m_hasAutoOrphans) 103 , m_hasAutoOrphans(o.m_hasAutoOrphans)
105 , m_textStrokeColorIsCurrentColor(o.m_textStrokeColorIsCurrentColor) 104 , m_textStrokeColorIsCurrentColor(o.m_textStrokeColorIsCurrentColor)
106 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor) 105 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor)
107 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor) 106 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor)
108 , userModify(o.userModify) 107 , userModify(o.userModify)
109 , wordBreak(o.wordBreak) 108 , wordBreak(o.wordBreak)
110 , overflowWrap(o.overflowWrap) 109 , overflowWrap(o.overflowWrap)
111 , lineBreak(o.lineBreak) 110 , lineBreak(o.lineBreak)
112 , userSelect(o.userSelect) 111 , userSelect(o.userSelect)
113 , speak(o.speak)
114 , hyphens(o.hyphens) 112 , hyphens(o.hyphens)
115 , textEmphasisFill(o.textEmphasisFill) 113 , textEmphasisFill(o.textEmphasisFill)
116 , textEmphasisMark(o.textEmphasisMark) 114 , textEmphasisMark(o.textEmphasisMark)
117 , textEmphasisPosition(o.textEmphasisPosition) 115 , textEmphasisPosition(o.textEmphasisPosition)
118 , m_textAlignLast(o.m_textAlignLast) 116 , m_textAlignLast(o.m_textAlignLast)
119 , m_textJustify(o.m_textJustify) 117 , m_textJustify(o.m_textJustify)
120 , m_textOrientation(o.m_textOrientation) 118 , m_textOrientation(o.m_textOrientation)
121 , m_textIndentLine(o.m_textIndentLine) 119 , m_textIndentLine(o.m_textIndentLine)
122 , m_textIndentType(o.m_textIndentType) 120 , m_textIndentType(o.m_textIndentType)
123 , m_lineBoxContain(o.m_lineBoxContain) 121 , m_lineBoxContain(o.m_lineBoxContain)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 && m_hasAutoWidows == o.m_hasAutoWidows 154 && m_hasAutoWidows == o.m_hasAutoWidows
157 && m_hasAutoOrphans == o.m_hasAutoOrphans 155 && m_hasAutoOrphans == o.m_hasAutoOrphans
158 && m_textStrokeColorIsCurrentColor == o.m_textStrokeColorIsCurrentColor 156 && m_textStrokeColorIsCurrentColor == o.m_textStrokeColorIsCurrentColor
159 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor 157 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor
160 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor 158 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor
161 && userModify == o.userModify 159 && userModify == o.userModify
162 && wordBreak == o.wordBreak 160 && wordBreak == o.wordBreak
163 && overflowWrap == o.overflowWrap 161 && overflowWrap == o.overflowWrap
164 && lineBreak == o.lineBreak 162 && lineBreak == o.lineBreak
165 && userSelect == o.userSelect 163 && userSelect == o.userSelect
166 && speak == o.speak
167 && hyphens == o.hyphens 164 && hyphens == o.hyphens
168 && hyphenationLimitBefore == o.hyphenationLimitBefore 165 && hyphenationLimitBefore == o.hyphenationLimitBefore
169 && hyphenationLimitAfter == o.hyphenationLimitAfter 166 && hyphenationLimitAfter == o.hyphenationLimitAfter
170 && hyphenationLimitLines == o.hyphenationLimitLines 167 && hyphenationLimitLines == o.hyphenationLimitLines
171 && textEmphasisFill == o.textEmphasisFill 168 && textEmphasisFill == o.textEmphasisFill
172 && textEmphasisMark == o.textEmphasisMark 169 && textEmphasisMark == o.textEmphasisMark
173 && textEmphasisPosition == o.textEmphasisPosition 170 && textEmphasisPosition == o.textEmphasisPosition
174 && m_touchActionDelay == o.m_touchActionDelay 171 && m_touchActionDelay == o.m_touchActionDelay
175 && m_textAlignLast == o.m_textAlignLast 172 && m_textAlignLast == o.m_textAlignLast
176 && m_textJustify == o.m_textJustify 173 && m_textJustify == o.m_textJustify
(...skipping 16 matching lines...) Expand all
193 { 190 {
194 return dataEquivalent(textShadow.get(), o.textShadow.get()); 191 return dataEquivalent(textShadow.get(), o.textShadow.get());
195 } 192 }
196 193
197 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const 194 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const
198 { 195 {
199 return dataEquivalent(quotes, o.quotes); 196 return dataEquivalent(quotes, o.quotes);
200 } 197 }
201 198
202 } // namespace blink 199 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698