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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp

Issue 2874123002: Rename members in StyleRareInheritedData. (Closed)
Patch Set: Created 3 years, 7 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 | « third_party/WebKit/Source/core/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 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
4 * reserved. 4 * reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 TabSize tab_size; 55 TabSize tab_size;
56 void* variables[1]; 56 void* variables[1];
57 TextSizeAdjust text_size_adjust; 57 TextSizeAdjust text_size_adjust;
58 }; 58 };
59 59
60 static_assert(sizeof(StyleRareInheritedData) <= 60 static_assert(sizeof(StyleRareInheritedData) <=
61 sizeof(SameSizeAsStyleRareInheritedData), 61 sizeof(SameSizeAsStyleRareInheritedData),
62 "StyleRareInheritedData should stay small"); 62 "StyleRareInheritedData should stay small");
63 63
64 StyleRareInheritedData::StyleRareInheritedData() 64 StyleRareInheritedData::StyleRareInheritedData()
65 : list_style_image(ComputedStyle::InitialListStyleImage()), 65 : list_style_image_(ComputedStyle::InitialListStyleImage()),
66 text_stroke_width(ComputedStyle::InitialTextStrokeWidth()), 66 text_stroke_width_(ComputedStyle::InitialTextStrokeWidth()),
67 indent(ComputedStyle::InitialTextIndent()), 67 indent_(ComputedStyle::InitialTextIndent()),
68 effective_zoom_(ComputedStyle::InitialZoom()), 68 effective_zoom_(ComputedStyle::InitialZoom()),
69 widows(ComputedStyle::InitialWidows()), 69 widows_(ComputedStyle::InitialWidows()),
70 orphans(ComputedStyle::InitialOrphans()), 70 orphans_(ComputedStyle::InitialOrphans()),
71 text_stroke_color_is_current_color_(true), 71 text_stroke_color_is_current_color_(true),
72 text_fill_color_is_current_color_(true), 72 text_fill_color_is_current_color_(true),
73 text_emphasis_color_is_current_color_(true), 73 text_emphasis_color_is_current_color_(true),
74 caret_color_is_current_color_(false), 74 caret_color_is_current_color_(false),
75 caret_color_is_auto_(true), 75 caret_color_is_auto_(true),
76 visited_link_text_stroke_color_is_current_color_(true), 76 visited_link_text_stroke_color_is_current_color_(true),
77 visited_link_text_fill_color_is_current_color_(true), 77 visited_link_text_fill_color_is_current_color_(true),
78 visited_link_text_emphasis_color_is_current_color_(true), 78 visited_link_text_emphasis_color_is_current_color_(true),
79 visited_link_caret_color_is_current_color_(false), 79 visited_link_caret_color_is_current_color_(false),
80 visited_link_caret_color_is_auto_(true), 80 visited_link_caret_color_is_auto_(true),
81 text_security(ComputedStyle::InitialTextSecurity()), 81 text_security_(ComputedStyle::InitialTextSecurity()),
82 user_modify(READ_ONLY), 82 user_modify_(READ_ONLY),
83 word_break(ComputedStyle::InitialWordBreak()), 83 word_break_(ComputedStyle::InitialWordBreak()),
84 overflow_wrap(ComputedStyle::InitialOverflowWrap()), 84 overflow_wrap_(ComputedStyle::InitialOverflowWrap()),
85 line_break(kLineBreakAuto), 85 line_break_(kLineBreakAuto),
86 user_select(ComputedStyle::InitialUserSelect()), 86 user_select_(ComputedStyle::InitialUserSelect()),
87 speak(kSpeakNormal), 87 speak_(kSpeakNormal),
88 hyphens(kHyphensManual), 88 hyphens_(kHyphensManual),
89 text_emphasis_fill(kTextEmphasisFillFilled), 89 text_emphasis_fill_(kTextEmphasisFillFilled),
90 text_emphasis_mark(kTextEmphasisMarkNone), 90 text_emphasis_mark_(kTextEmphasisMarkNone),
91 text_emphasis_position(kTextEmphasisPositionOver), 91 text_emphasis_position_(kTextEmphasisPositionOver),
92 text_align_last_(ComputedStyle::InitialTextAlignLast()), 92 text_align_last_(ComputedStyle::InitialTextAlignLast()),
93 text_justify_(ComputedStyle::InitialTextJustify()), 93 text_justify_(ComputedStyle::InitialTextJustify()),
94 text_orientation_(kTextOrientationMixed), 94 text_orientation_(kTextOrientationMixed),
95 text_combine_(ComputedStyle::InitialTextCombine()), 95 text_combine_(ComputedStyle::InitialTextCombine()),
96 text_indent_line_(ComputedStyle::InitialTextIndentLine()), 96 text_indent_line_(ComputedStyle::InitialTextIndentLine()),
97 text_indent_type_(ComputedStyle::InitialTextIndentLine()), 97 text_indent_type_(ComputedStyle::InitialTextIndentLine()),
98 image_rendering_(ComputedStyle::InitialImageRendering()), 98 image_rendering_(ComputedStyle::InitialImageRendering()),
99 text_underline_position_(ComputedStyle::InitialTextUnderlinePosition()), 99 text_underline_position_(ComputedStyle::InitialTextUnderlinePosition()),
100 text_decoration_skip_(ComputedStyle::InitialTextDecorationSkip()), 100 text_decoration_skip_(ComputedStyle::InitialTextDecorationSkip()),
101 ruby_position_(ComputedStyle::InitialRubyPosition()), 101 ruby_position_(ComputedStyle::InitialRubyPosition()),
102 subtree_will_change_contents_(false), 102 subtree_will_change_contents_(false),
103 self_or_ancestor_has_dir_auto_attribute_(false), 103 self_or_ancestor_has_dir_auto_attribute_(false),
104 respect_image_orientation_(false), 104 respect_image_orientation_(false),
105 hyphenation_limit_before(-1), 105 hyphenation_limit_before_(-1),
106 hyphenation_limit_after(-1), 106 hyphenation_limit_after_(-1),
107 hyphenation_limit_lines(-1), 107 hyphenation_limit_lines_(-1),
108 line_height_step_(0), 108 line_height_step_(0),
109 tap_highlight_color(ComputedStyle::InitialTapHighlightColor()), 109 tap_highlight_color_(ComputedStyle::InitialTapHighlightColor()),
110 tab_size_(ComputedStyle::InitialTabSize()), 110 tab_size_(ComputedStyle::InitialTabSize()),
111 text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {} 111 text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {}
112 112
113 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o) 113 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
114 : RefCounted<StyleRareInheritedData>(), 114 : RefCounted<StyleRareInheritedData>(),
115 list_style_image(o.list_style_image), 115 list_style_image_(o.list_style_image_),
116 text_stroke_color_(o.text_stroke_color_), 116 text_stroke_color_(o.text_stroke_color_),
117 text_stroke_width(o.text_stroke_width), 117 text_stroke_width_(o.text_stroke_width_),
118 text_fill_color_(o.text_fill_color_), 118 text_fill_color_(o.text_fill_color_),
119 text_emphasis_color_(o.text_emphasis_color_), 119 text_emphasis_color_(o.text_emphasis_color_),
120 caret_color_(o.caret_color_), 120 caret_color_(o.caret_color_),
121 visited_link_text_stroke_color_(o.visited_link_text_stroke_color_), 121 visited_link_text_stroke_color_(o.visited_link_text_stroke_color_),
122 visited_link_text_fill_color_(o.visited_link_text_fill_color_), 122 visited_link_text_fill_color_(o.visited_link_text_fill_color_),
123 visited_link_text_emphasis_color_(o.visited_link_text_emphasis_color_), 123 visited_link_text_emphasis_color_(o.visited_link_text_emphasis_color_),
124 visited_link_caret_color_(o.visited_link_caret_color_), 124 visited_link_caret_color_(o.visited_link_caret_color_),
125 text_shadow(o.text_shadow), 125 text_shadow_(o.text_shadow_),
126 highlight(o.highlight), 126 highlight_(o.highlight_),
127 cursor_data(o.cursor_data), 127 cursor_data_(o.cursor_data_),
128 indent(o.indent), 128 indent_(o.indent_),
129 effective_zoom_(o.effective_zoom_), 129 effective_zoom_(o.effective_zoom_),
130 widows(o.widows), 130 widows_(o.widows_),
131 orphans(o.orphans), 131 orphans_(o.orphans_),
132 text_stroke_color_is_current_color_( 132 text_stroke_color_is_current_color_(
133 o.text_stroke_color_is_current_color_), 133 o.text_stroke_color_is_current_color_),
134 text_fill_color_is_current_color_(o.text_fill_color_is_current_color_), 134 text_fill_color_is_current_color_(o.text_fill_color_is_current_color_),
135 text_emphasis_color_is_current_color_( 135 text_emphasis_color_is_current_color_(
136 o.text_emphasis_color_is_current_color_), 136 o.text_emphasis_color_is_current_color_),
137 caret_color_is_current_color_(o.caret_color_is_current_color_), 137 caret_color_is_current_color_(o.caret_color_is_current_color_),
138 caret_color_is_auto_(o.caret_color_is_auto_), 138 caret_color_is_auto_(o.caret_color_is_auto_),
139 visited_link_text_stroke_color_is_current_color_( 139 visited_link_text_stroke_color_is_current_color_(
140 o.visited_link_text_stroke_color_is_current_color_), 140 o.visited_link_text_stroke_color_is_current_color_),
141 visited_link_text_fill_color_is_current_color_( 141 visited_link_text_fill_color_is_current_color_(
142 o.visited_link_text_fill_color_is_current_color_), 142 o.visited_link_text_fill_color_is_current_color_),
143 visited_link_text_emphasis_color_is_current_color_( 143 visited_link_text_emphasis_color_is_current_color_(
144 o.visited_link_text_emphasis_color_is_current_color_), 144 o.visited_link_text_emphasis_color_is_current_color_),
145 visited_link_caret_color_is_current_color_( 145 visited_link_caret_color_is_current_color_(
146 o.visited_link_caret_color_is_current_color_), 146 o.visited_link_caret_color_is_current_color_),
147 visited_link_caret_color_is_auto_(o.visited_link_caret_color_is_auto_), 147 visited_link_caret_color_is_auto_(o.visited_link_caret_color_is_auto_),
148 text_security(o.text_security), 148 text_security_(o.text_security_),
149 user_modify(o.user_modify), 149 user_modify_(o.user_modify_),
150 word_break(o.word_break), 150 word_break_(o.word_break_),
151 overflow_wrap(o.overflow_wrap), 151 overflow_wrap_(o.overflow_wrap_),
152 line_break(o.line_break), 152 line_break_(o.line_break_),
153 user_select(o.user_select), 153 user_select_(o.user_select_),
154 speak(o.speak), 154 speak_(o.speak_),
155 hyphens(o.hyphens), 155 hyphens_(o.hyphens_),
156 text_emphasis_fill(o.text_emphasis_fill), 156 text_emphasis_fill_(o.text_emphasis_fill_),
157 text_emphasis_mark(o.text_emphasis_mark), 157 text_emphasis_mark_(o.text_emphasis_mark_),
158 text_emphasis_position(o.text_emphasis_position), 158 text_emphasis_position_(o.text_emphasis_position_),
159 text_align_last_(o.text_align_last_), 159 text_align_last_(o.text_align_last_),
160 text_justify_(o.text_justify_), 160 text_justify_(o.text_justify_),
161 text_orientation_(o.text_orientation_), 161 text_orientation_(o.text_orientation_),
162 text_combine_(o.text_combine_), 162 text_combine_(o.text_combine_),
163 text_indent_line_(o.text_indent_line_), 163 text_indent_line_(o.text_indent_line_),
164 text_indent_type_(o.text_indent_type_), 164 text_indent_type_(o.text_indent_type_),
165 image_rendering_(o.image_rendering_), 165 image_rendering_(o.image_rendering_),
166 text_underline_position_(o.text_underline_position_), 166 text_underline_position_(o.text_underline_position_),
167 text_decoration_skip_(o.text_decoration_skip_), 167 text_decoration_skip_(o.text_decoration_skip_),
168 ruby_position_(o.ruby_position_), 168 ruby_position_(o.ruby_position_),
169 subtree_will_change_contents_(o.subtree_will_change_contents_), 169 subtree_will_change_contents_(o.subtree_will_change_contents_),
170 self_or_ancestor_has_dir_auto_attribute_( 170 self_or_ancestor_has_dir_auto_attribute_(
171 o.self_or_ancestor_has_dir_auto_attribute_), 171 o.self_or_ancestor_has_dir_auto_attribute_),
172 respect_image_orientation_(o.respect_image_orientation_), 172 respect_image_orientation_(o.respect_image_orientation_),
173 hyphenation_string(o.hyphenation_string), 173 hyphenation_string_(o.hyphenation_string_),
174 hyphenation_limit_before(o.hyphenation_limit_before), 174 hyphenation_limit_before_(o.hyphenation_limit_before_),
175 hyphenation_limit_after(o.hyphenation_limit_after), 175 hyphenation_limit_after_(o.hyphenation_limit_after_),
176 hyphenation_limit_lines(o.hyphenation_limit_lines), 176 hyphenation_limit_lines_(o.hyphenation_limit_lines_),
177 line_height_step_(o.line_height_step_), 177 line_height_step_(o.line_height_step_),
178 text_emphasis_custom_mark(o.text_emphasis_custom_mark), 178 text_emphasis_custom_mark_(o.text_emphasis_custom_mark_),
179 tap_highlight_color(o.tap_highlight_color), 179 tap_highlight_color_(o.tap_highlight_color_),
180 applied_text_decorations(o.applied_text_decorations), 180 applied_text_decorations_(o.applied_text_decorations_),
181 tab_size_(o.tab_size_), 181 tab_size_(o.tab_size_),
182 variables(o.variables), 182 variables_(o.variables_),
183 text_size_adjust_(o.text_size_adjust_) {} 183 text_size_adjust_(o.text_size_adjust_) {}
184 184
185 StyleRareInheritedData::~StyleRareInheritedData() {} 185 StyleRareInheritedData::~StyleRareInheritedData() {}
186 186
187 bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const { 187 bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const {
188 return text_stroke_color_ == o.text_stroke_color_ && 188 return text_stroke_color_ == o.text_stroke_color_ &&
189 text_stroke_width == o.text_stroke_width && 189 text_stroke_width_ == o.text_stroke_width_ &&
190 text_fill_color_ == o.text_fill_color_ && 190 text_fill_color_ == o.text_fill_color_ &&
191 text_emphasis_color_ == o.text_emphasis_color_ && 191 text_emphasis_color_ == o.text_emphasis_color_ &&
192 caret_color_ == o.caret_color_ && 192 caret_color_ == o.caret_color_ &&
193 visited_link_text_stroke_color_ == o.visited_link_text_stroke_color_ && 193 visited_link_text_stroke_color_ == o.visited_link_text_stroke_color_ &&
194 visited_link_text_fill_color_ == o.visited_link_text_fill_color_ && 194 visited_link_text_fill_color_ == o.visited_link_text_fill_color_ &&
195 visited_link_text_emphasis_color_ == 195 visited_link_text_emphasis_color_ ==
196 o.visited_link_text_emphasis_color_ && 196 o.visited_link_text_emphasis_color_ &&
197 visited_link_caret_color_ == o.visited_link_caret_color_ && 197 visited_link_caret_color_ == o.visited_link_caret_color_ &&
198 tap_highlight_color == o.tap_highlight_color && 198 tap_highlight_color_ == o.tap_highlight_color_ &&
199 ShadowDataEquivalent(o) && highlight == o.highlight && 199 ShadowDataEquivalent(o) && highlight_ == o.highlight_ &&
200 DataEquivalent(cursor_data, o.cursor_data) && indent == o.indent && 200 DataEquivalent(cursor_data_, o.cursor_data_) && indent_ == o.indent_ &&
201 effective_zoom_ == o.effective_zoom_ && widows == o.widows && 201 effective_zoom_ == o.effective_zoom_ && widows_ == o.widows_ &&
202 orphans == o.orphans && 202 orphans_ == o.orphans_ &&
203 text_stroke_color_is_current_color_ == 203 text_stroke_color_is_current_color_ ==
204 o.text_stroke_color_is_current_color_ && 204 o.text_stroke_color_is_current_color_ &&
205 text_fill_color_is_current_color_ == 205 text_fill_color_is_current_color_ ==
206 o.text_fill_color_is_current_color_ && 206 o.text_fill_color_is_current_color_ &&
207 text_emphasis_color_is_current_color_ == 207 text_emphasis_color_is_current_color_ ==
208 o.text_emphasis_color_is_current_color_ && 208 o.text_emphasis_color_is_current_color_ &&
209 caret_color_is_current_color_ == o.caret_color_is_current_color_ && 209 caret_color_is_current_color_ == o.caret_color_is_current_color_ &&
210 caret_color_is_auto_ == o.caret_color_is_auto_ && 210 caret_color_is_auto_ == o.caret_color_is_auto_ &&
211 visited_link_text_stroke_color_is_current_color_ == 211 visited_link_text_stroke_color_is_current_color_ ==
212 o.visited_link_text_stroke_color_is_current_color_ && 212 o.visited_link_text_stroke_color_is_current_color_ &&
213 visited_link_text_fill_color_is_current_color_ == 213 visited_link_text_fill_color_is_current_color_ ==
214 o.visited_link_text_fill_color_is_current_color_ && 214 o.visited_link_text_fill_color_is_current_color_ &&
215 visited_link_text_emphasis_color_is_current_color_ == 215 visited_link_text_emphasis_color_is_current_color_ ==
216 o.visited_link_text_emphasis_color_is_current_color_ && 216 o.visited_link_text_emphasis_color_is_current_color_ &&
217 visited_link_caret_color_is_current_color_ == 217 visited_link_caret_color_is_current_color_ ==
218 o.visited_link_caret_color_is_current_color_ && 218 o.visited_link_caret_color_is_current_color_ &&
219 visited_link_caret_color_is_auto_ == 219 visited_link_caret_color_is_auto_ ==
220 o.visited_link_caret_color_is_auto_ && 220 o.visited_link_caret_color_is_auto_ &&
221 text_security == o.text_security && user_modify == o.user_modify && 221 text_security_ == o.text_security_ && user_modify_ == o.user_modify_ &&
222 word_break == o.word_break && overflow_wrap == o.overflow_wrap && 222 word_break_ == o.word_break_ && overflow_wrap_ == o.overflow_wrap_ &&
223 line_break == o.line_break && user_select == o.user_select && 223 line_break_ == o.line_break_ && user_select_ == o.user_select_ &&
224 speak == o.speak && hyphens == o.hyphens && 224 speak_ == o.speak_ && hyphens_ == o.hyphens_ &&
225 hyphenation_limit_before == o.hyphenation_limit_before && 225 hyphenation_limit_before_ == o.hyphenation_limit_before_ &&
226 hyphenation_limit_after == o.hyphenation_limit_after && 226 hyphenation_limit_after_ == o.hyphenation_limit_after_ &&
227 hyphenation_limit_lines == o.hyphenation_limit_lines && 227 hyphenation_limit_lines_ == o.hyphenation_limit_lines_ &&
228 text_emphasis_fill == o.text_emphasis_fill && 228 text_emphasis_fill_ == o.text_emphasis_fill_ &&
229 text_emphasis_mark == o.text_emphasis_mark && 229 text_emphasis_mark_ == o.text_emphasis_mark_ &&
230 text_emphasis_position == o.text_emphasis_position && 230 text_emphasis_position_ == o.text_emphasis_position_ &&
231 text_align_last_ == o.text_align_last_ && 231 text_align_last_ == o.text_align_last_ &&
232 text_justify_ == o.text_justify_ && 232 text_justify_ == o.text_justify_ &&
233 text_orientation_ == o.text_orientation_ && 233 text_orientation_ == o.text_orientation_ &&
234 text_combine_ == o.text_combine_ && 234 text_combine_ == o.text_combine_ &&
235 text_indent_line_ == o.text_indent_line_ && 235 text_indent_line_ == o.text_indent_line_ &&
236 text_indent_type_ == o.text_indent_type_ && 236 text_indent_type_ == o.text_indent_type_ &&
237 subtree_will_change_contents_ == o.subtree_will_change_contents_ && 237 subtree_will_change_contents_ == o.subtree_will_change_contents_ &&
238 self_or_ancestor_has_dir_auto_attribute_ == 238 self_or_ancestor_has_dir_auto_attribute_ ==
239 o.self_or_ancestor_has_dir_auto_attribute_ && 239 o.self_or_ancestor_has_dir_auto_attribute_ &&
240 respect_image_orientation_ == o.respect_image_orientation_ && 240 respect_image_orientation_ == o.respect_image_orientation_ &&
241 hyphenation_string == o.hyphenation_string && 241 hyphenation_string_ == o.hyphenation_string_ &&
242 line_height_step_ == o.line_height_step_ && 242 line_height_step_ == o.line_height_step_ &&
243 text_emphasis_custom_mark == o.text_emphasis_custom_mark && 243 text_emphasis_custom_mark_ == o.text_emphasis_custom_mark_ &&
244 QuotesDataEquivalent(o) && tab_size_ == o.tab_size_ && 244 QuotesDataEquivalent(o) && tab_size_ == o.tab_size_ &&
245 image_rendering_ == o.image_rendering_ && 245 image_rendering_ == o.image_rendering_ &&
246 text_underline_position_ == o.text_underline_position_ && 246 text_underline_position_ == o.text_underline_position_ &&
247 text_decoration_skip_ == o.text_decoration_skip_ && 247 text_decoration_skip_ == o.text_decoration_skip_ &&
248 ruby_position_ == o.ruby_position_ && 248 ruby_position_ == o.ruby_position_ &&
249 DataEquivalent(list_style_image, o.list_style_image) && 249 DataEquivalent(list_style_image_, o.list_style_image_) &&
250 DataEquivalent(applied_text_decorations, o.applied_text_decorations) && 250 DataEquivalent(applied_text_decorations_,
251 DataEquivalent(variables, o.variables) && 251 o.applied_text_decorations_) &&
252 DataEquivalent(variables_, o.variables_) &&
252 text_size_adjust_ == o.text_size_adjust_; 253 text_size_adjust_ == o.text_size_adjust_;
253 } 254 }
254 255
255 bool StyleRareInheritedData::ShadowDataEquivalent( 256 bool StyleRareInheritedData::ShadowDataEquivalent(
256 const StyleRareInheritedData& o) const { 257 const StyleRareInheritedData& o) const {
257 return DataEquivalent(text_shadow, o.text_shadow); 258 return DataEquivalent(text_shadow_, o.text_shadow_);
258 } 259 }
259 260
260 bool StyleRareInheritedData::QuotesDataEquivalent( 261 bool StyleRareInheritedData::QuotesDataEquivalent(
261 const StyleRareInheritedData& o) const { 262 const StyleRareInheritedData& o) const {
262 return DataEquivalent(quotes, o.quotes); 263 return DataEquivalent(quotes_, o.quotes_);
263 } 264 }
264 265
265 } // namespace blink 266 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698