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

Side by Side Diff: Source/core/rendering/style/StyleRareInheritedData.cpp

Issue 14773036: Remove ACCELERATED_OVERFLOW_SCROLLING as it is always off. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove ACCELERATED_OVERFLOW_SCROLLING as it is always off. Created 7 years, 6 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 | « Source/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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 , textEmphasisMark(TextEmphasisMarkNone) 77 , textEmphasisMark(TextEmphasisMarkNone)
78 , textEmphasisPosition(TextEmphasisPositionOver) 78 , textEmphasisPosition(TextEmphasisPositionOver)
79 , m_textOrientation(TextOrientationVerticalRight) 79 , m_textOrientation(TextOrientationVerticalRight)
80 #if ENABLE(CSS3_TEXT) 80 #if ENABLE(CSS3_TEXT)
81 , m_textIndentLine(RenderStyle::initialTextIndentLine()) 81 , m_textIndentLine(RenderStyle::initialTextIndentLine())
82 #endif 82 #endif
83 , m_lineBoxContain(RenderStyle::initialLineBoxContain()) 83 , m_lineBoxContain(RenderStyle::initialLineBoxContain())
84 , m_imageRendering(RenderStyle::initialImageRendering()) 84 , m_imageRendering(RenderStyle::initialImageRendering())
85 , m_lineSnap(RenderStyle::initialLineSnap()) 85 , m_lineSnap(RenderStyle::initialLineSnap())
86 , m_lineAlign(RenderStyle::initialLineAlign()) 86 , m_lineAlign(RenderStyle::initialLineAlign())
87 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
88 , useTouchOverflowScrolling(RenderStyle::initialUseTouchOverflowScrolling())
89 #endif
90 #if ENABLE(CSS3_TEXT) 87 #if ENABLE(CSS3_TEXT)
91 , m_textAlignLast(RenderStyle::initialTextAlignLast()) 88 , m_textAlignLast(RenderStyle::initialTextAlignLast())
92 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition()) 89 , m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
93 #endif // CSS3_TEXT 90 #endif // CSS3_TEXT
94 , m_rubyPosition(RenderStyle::initialRubyPosition()) 91 , m_rubyPosition(RenderStyle::initialRubyPosition())
95 , hyphenationLimitBefore(-1) 92 , hyphenationLimitBefore(-1)
96 , hyphenationLimitAfter(-1) 93 , hyphenationLimitAfter(-1)
97 , hyphenationLimitLines(-1) 94 , hyphenationLimitLines(-1)
98 , m_lineGrid(RenderStyle::initialLineGrid()) 95 , m_lineGrid(RenderStyle::initialLineGrid())
99 , m_tabSize(RenderStyle::initialTabSize()) 96 , m_tabSize(RenderStyle::initialTabSize())
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 , textEmphasisMark(o.textEmphasisMark) 131 , textEmphasisMark(o.textEmphasisMark)
135 , textEmphasisPosition(o.textEmphasisPosition) 132 , textEmphasisPosition(o.textEmphasisPosition)
136 , m_textOrientation(o.m_textOrientation) 133 , m_textOrientation(o.m_textOrientation)
137 #if ENABLE(CSS3_TEXT) 134 #if ENABLE(CSS3_TEXT)
138 , m_textIndentLine(o.m_textIndentLine) 135 , m_textIndentLine(o.m_textIndentLine)
139 #endif 136 #endif
140 , m_lineBoxContain(o.m_lineBoxContain) 137 , m_lineBoxContain(o.m_lineBoxContain)
141 , m_imageRendering(o.m_imageRendering) 138 , m_imageRendering(o.m_imageRendering)
142 , m_lineSnap(o.m_lineSnap) 139 , m_lineSnap(o.m_lineSnap)
143 , m_lineAlign(o.m_lineAlign) 140 , m_lineAlign(o.m_lineAlign)
144 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
145 , useTouchOverflowScrolling(o.useTouchOverflowScrolling)
146 #endif
147 #if ENABLE(CSS3_TEXT) 141 #if ENABLE(CSS3_TEXT)
148 , m_textAlignLast(o.m_textAlignLast) 142 , m_textAlignLast(o.m_textAlignLast)
149 , m_textUnderlinePosition(o.m_textUnderlinePosition) 143 , m_textUnderlinePosition(o.m_textUnderlinePosition)
150 #endif // CSS3_TEXT 144 #endif // CSS3_TEXT
151 , m_rubyPosition(o.m_rubyPosition) 145 , m_rubyPosition(o.m_rubyPosition)
152 , hyphenationString(o.hyphenationString) 146 , hyphenationString(o.hyphenationString)
153 , hyphenationLimitBefore(o.hyphenationLimitBefore) 147 , hyphenationLimitBefore(o.hyphenationLimitBefore)
154 , hyphenationLimitAfter(o.hyphenationLimitAfter) 148 , hyphenationLimitAfter(o.hyphenationLimitAfter)
155 , hyphenationLimitLines(o.hyphenationLimitLines) 149 , hyphenationLimitLines(o.hyphenationLimitLines)
156 , locale(o.locale) 150 , locale(o.locale)
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 && m_effectiveZoom == o.m_effectiveZoom 186 && m_effectiveZoom == o.m_effectiveZoom
193 && widows == o.widows 187 && widows == o.widows
194 && orphans == o.orphans 188 && orphans == o.orphans
195 && m_hasAutoWidows == o.m_hasAutoWidows 189 && m_hasAutoWidows == o.m_hasAutoWidows
196 && m_hasAutoOrphans == o.m_hasAutoOrphans 190 && m_hasAutoOrphans == o.m_hasAutoOrphans
197 && textSecurity == o.textSecurity 191 && textSecurity == o.textSecurity
198 && userModify == o.userModify 192 && userModify == o.userModify
199 && wordBreak == o.wordBreak 193 && wordBreak == o.wordBreak
200 && overflowWrap == o.overflowWrap 194 && overflowWrap == o.overflowWrap
201 && lineBreak == o.lineBreak 195 && lineBreak == o.lineBreak
202 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
203 && useTouchOverflowScrolling == o.useTouchOverflowScrolling
204 #endif
205 && resize == o.resize 196 && resize == o.resize
206 && userSelect == o.userSelect 197 && userSelect == o.userSelect
207 && speak == o.speak 198 && speak == o.speak
208 && hyphens == o.hyphens 199 && hyphens == o.hyphens
209 && hyphenationLimitBefore == o.hyphenationLimitBefore 200 && hyphenationLimitBefore == o.hyphenationLimitBefore
210 && hyphenationLimitAfter == o.hyphenationLimitAfter 201 && hyphenationLimitAfter == o.hyphenationLimitAfter
211 && hyphenationLimitLines == o.hyphenationLimitLines 202 && hyphenationLimitLines == o.hyphenationLimitLines
212 && textEmphasisFill == o.textEmphasisFill 203 && textEmphasisFill == o.textEmphasisFill
213 && textEmphasisMark == o.textEmphasisMark 204 && textEmphasisMark == o.textEmphasisMark
214 && textEmphasisPosition == o.textEmphasisPosition 205 && textEmphasisPosition == o.textEmphasisPosition
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 info.addMember(cursorData, "cursorData"); 245 info.addMember(cursorData, "cursorData");
255 info.addMember(hyphenationString, "hyphenationString"); 246 info.addMember(hyphenationString, "hyphenationString");
256 info.addMember(locale, "locale"); 247 info.addMember(locale, "locale");
257 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark"); 248 info.addMember(textEmphasisCustomMark, "textEmphasisCustomMark");
258 info.addMember(quotes, "quotes"); 249 info.addMember(quotes, "quotes");
259 info.addMember(m_lineGrid, "lineGrid"); 250 info.addMember(m_lineGrid, "lineGrid");
260 info.addMember(m_variables, "variables"); 251 info.addMember(m_variables, "variables");
261 } 252 }
262 253
263 } // namespace WebCore 254 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698