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

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

Issue 689283003: Remove scroll corners and resizers. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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) 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 , orphans(RenderStyle::initialOrphans()) 62 , orphans(RenderStyle::initialOrphans())
63 , m_hasAutoWidows(true) 63 , m_hasAutoWidows(true)
64 , m_hasAutoOrphans(true) 64 , m_hasAutoOrphans(true)
65 , m_textStrokeColorIsCurrentColor(true) 65 , m_textStrokeColorIsCurrentColor(true)
66 , m_textFillColorIsCurrentColor(true) 66 , m_textFillColorIsCurrentColor(true)
67 , m_textEmphasisColorIsCurrentColor(true) 67 , m_textEmphasisColorIsCurrentColor(true)
68 , userModify(READ_ONLY) 68 , userModify(READ_ONLY)
69 , wordBreak(RenderStyle::initialWordBreak()) 69 , wordBreak(RenderStyle::initialWordBreak())
70 , overflowWrap(RenderStyle::initialOverflowWrap()) 70 , overflowWrap(RenderStyle::initialOverflowWrap())
71 , lineBreak(LineBreakAuto) 71 , lineBreak(LineBreakAuto)
72 , resize(RenderStyle::initialResize())
73 , userSelect(RenderStyle::initialUserSelect()) 72 , userSelect(RenderStyle::initialUserSelect())
74 , speak(SpeakNormal) 73 , speak(SpeakNormal)
75 , hyphens(HyphensManual) 74 , hyphens(HyphensManual)
76 , textEmphasisFill(TextEmphasisFillFilled) 75 , textEmphasisFill(TextEmphasisFillFilled)
77 , textEmphasisMark(TextEmphasisMarkNone) 76 , textEmphasisMark(TextEmphasisMarkNone)
78 , textEmphasisPosition(TextEmphasisPositionOver) 77 , textEmphasisPosition(TextEmphasisPositionOver)
79 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 78 , m_textAlignLast(RenderStyle::initialTextAlignLast())
80 , m_textJustify(RenderStyle::initialTextJustify()) 79 , m_textJustify(RenderStyle::initialTextJustify())
81 , m_textOrientation(TextOrientationVerticalRight) 80 , m_textOrientation(TextOrientationVerticalRight)
82 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 81 , m_textIndentLine(RenderStyle::initialTextIndentLine())
(...skipping 27 matching lines...) Expand all
110 , orphans(o.orphans) 109 , orphans(o.orphans)
111 , m_hasAutoWidows(o.m_hasAutoWidows) 110 , m_hasAutoWidows(o.m_hasAutoWidows)
112 , m_hasAutoOrphans(o.m_hasAutoOrphans) 111 , m_hasAutoOrphans(o.m_hasAutoOrphans)
113 , m_textStrokeColorIsCurrentColor(o.m_textStrokeColorIsCurrentColor) 112 , m_textStrokeColorIsCurrentColor(o.m_textStrokeColorIsCurrentColor)
114 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor) 113 , m_textFillColorIsCurrentColor(o.m_textFillColorIsCurrentColor)
115 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor) 114 , m_textEmphasisColorIsCurrentColor(o.m_textEmphasisColorIsCurrentColor)
116 , userModify(o.userModify) 115 , userModify(o.userModify)
117 , wordBreak(o.wordBreak) 116 , wordBreak(o.wordBreak)
118 , overflowWrap(o.overflowWrap) 117 , overflowWrap(o.overflowWrap)
119 , lineBreak(o.lineBreak) 118 , lineBreak(o.lineBreak)
120 , resize(o.resize)
121 , userSelect(o.userSelect) 119 , userSelect(o.userSelect)
122 , speak(o.speak) 120 , speak(o.speak)
123 , hyphens(o.hyphens) 121 , hyphens(o.hyphens)
124 , textEmphasisFill(o.textEmphasisFill) 122 , textEmphasisFill(o.textEmphasisFill)
125 , textEmphasisMark(o.textEmphasisMark) 123 , textEmphasisMark(o.textEmphasisMark)
126 , textEmphasisPosition(o.textEmphasisPosition) 124 , textEmphasisPosition(o.textEmphasisPosition)
127 , m_textAlignLast(o.m_textAlignLast) 125 , m_textAlignLast(o.m_textAlignLast)
128 , m_textJustify(o.m_textJustify) 126 , m_textJustify(o.m_textJustify)
129 , m_textOrientation(o.m_textOrientation) 127 , m_textOrientation(o.m_textOrientation)
130 , m_textIndentLine(o.m_textIndentLine) 128 , m_textIndentLine(o.m_textIndentLine)
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 && orphans == o.orphans 164 && orphans == o.orphans
167 && m_hasAutoWidows == o.m_hasAutoWidows 165 && m_hasAutoWidows == o.m_hasAutoWidows
168 && m_hasAutoOrphans == o.m_hasAutoOrphans 166 && m_hasAutoOrphans == o.m_hasAutoOrphans
169 && m_textStrokeColorIsCurrentColor == o.m_textStrokeColorIsCurrentColor 167 && m_textStrokeColorIsCurrentColor == o.m_textStrokeColorIsCurrentColor
170 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor 168 && m_textFillColorIsCurrentColor == o.m_textFillColorIsCurrentColor
171 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor 169 && m_textEmphasisColorIsCurrentColor == o.m_textEmphasisColorIsCurrentCo lor
172 && userModify == o.userModify 170 && userModify == o.userModify
173 && wordBreak == o.wordBreak 171 && wordBreak == o.wordBreak
174 && overflowWrap == o.overflowWrap 172 && overflowWrap == o.overflowWrap
175 && lineBreak == o.lineBreak 173 && lineBreak == o.lineBreak
176 && resize == o.resize
177 && userSelect == o.userSelect 174 && userSelect == o.userSelect
178 && speak == o.speak 175 && speak == o.speak
179 && hyphens == o.hyphens 176 && hyphens == o.hyphens
180 && hyphenationLimitBefore == o.hyphenationLimitBefore 177 && hyphenationLimitBefore == o.hyphenationLimitBefore
181 && hyphenationLimitAfter == o.hyphenationLimitAfter 178 && hyphenationLimitAfter == o.hyphenationLimitAfter
182 && hyphenationLimitLines == o.hyphenationLimitLines 179 && hyphenationLimitLines == o.hyphenationLimitLines
183 && textEmphasisFill == o.textEmphasisFill 180 && textEmphasisFill == o.textEmphasisFill
184 && textEmphasisMark == o.textEmphasisMark 181 && textEmphasisMark == o.textEmphasisMark
185 && textEmphasisPosition == o.textEmphasisPosition 182 && textEmphasisPosition == o.textEmphasisPosition
186 && m_touchActionDelay == o.m_touchActionDelay 183 && m_touchActionDelay == o.m_touchActionDelay
(...skipping 19 matching lines...) Expand all
206 { 203 {
207 return dataEquivalent(textShadow.get(), o.textShadow.get()); 204 return dataEquivalent(textShadow.get(), o.textShadow.get());
208 } 205 }
209 206
210 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const 207 bool StyleRareInheritedData::quotesDataEquivalent(const StyleRareInheritedData& o) const
211 { 208 {
212 return dataEquivalent(quotes, o.quotes); 209 return dataEquivalent(quotes, o.quotes);
213 } 210 }
214 211
215 } // namespace blink 212 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareInheritedData.h ('k') | sky/engine/platform/graphics/CompositingReasons.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698