OLD | NEW |
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 running_transform_animation_on_compositor_(false), | 117 running_transform_animation_on_compositor_(false), |
118 running_filter_animation_on_compositor_(false), | 118 running_filter_animation_on_compositor_(false), |
119 running_backdrop_filter_animation_on_compositor_(false), | 119 running_backdrop_filter_animation_on_compositor_(false), |
120 is_stacking_context_(false), | 120 is_stacking_context_(false), |
121 effective_blend_mode_(ComputedStyle::InitialBlendMode()), | 121 effective_blend_mode_(ComputedStyle::InitialBlendMode()), |
122 touch_action_(ComputedStyle::InitialTouchAction()), | 122 touch_action_(ComputedStyle::InitialTouchAction()), |
123 object_fit_(ComputedStyle::InitialObjectFit()), | 123 object_fit_(ComputedStyle::InitialObjectFit()), |
124 isolation_(ComputedStyle::InitialIsolation()), | 124 isolation_(ComputedStyle::InitialIsolation()), |
125 contain_(ComputedStyle::InitialContain()), | 125 contain_(ComputedStyle::InitialContain()), |
126 scroll_behavior_(ComputedStyle::InitialScrollBehavior()), | 126 scroll_behavior_(ComputedStyle::InitialScrollBehavior()), |
127 scroll_snap_type_(ComputedStyle::InitialScrollSnapType()), | |
128 requires_accelerated_compositing_for_external_reasons_(false), | 127 requires_accelerated_compositing_for_external_reasons_(false), |
129 has_inline_transform_(false), | 128 has_inline_transform_(false), |
130 resize_(ComputedStyle::InitialResize()), | 129 resize_(ComputedStyle::InitialResize()), |
131 has_compositor_proxy_(false), | 130 has_compositor_proxy_(false), |
132 has_author_background_(false), | 131 has_author_background_(false), |
133 has_author_border_(false) {} | 132 has_author_border_(false) {} |
134 | 133 |
135 StyleRareNonInheritedData::StyleRareNonInheritedData( | 134 StyleRareNonInheritedData::StyleRareNonInheritedData( |
136 const StyleRareNonInheritedData& o) | 135 const StyleRareNonInheritedData& o) |
137 : RefCounted<StyleRareNonInheritedData>(), | 136 : RefCounted<StyleRareNonInheritedData>(), |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 o.running_filter_animation_on_compositor_), | 209 o.running_filter_animation_on_compositor_), |
211 running_backdrop_filter_animation_on_compositor_( | 210 running_backdrop_filter_animation_on_compositor_( |
212 o.running_backdrop_filter_animation_on_compositor_), | 211 o.running_backdrop_filter_animation_on_compositor_), |
213 is_stacking_context_(o.is_stacking_context_), | 212 is_stacking_context_(o.is_stacking_context_), |
214 effective_blend_mode_(o.effective_blend_mode_), | 213 effective_blend_mode_(o.effective_blend_mode_), |
215 touch_action_(o.touch_action_), | 214 touch_action_(o.touch_action_), |
216 object_fit_(o.object_fit_), | 215 object_fit_(o.object_fit_), |
217 isolation_(o.isolation_), | 216 isolation_(o.isolation_), |
218 contain_(o.contain_), | 217 contain_(o.contain_), |
219 scroll_behavior_(o.scroll_behavior_), | 218 scroll_behavior_(o.scroll_behavior_), |
220 scroll_snap_type_(o.scroll_snap_type_), | |
221 requires_accelerated_compositing_for_external_reasons_( | 219 requires_accelerated_compositing_for_external_reasons_( |
222 o.requires_accelerated_compositing_for_external_reasons_), | 220 o.requires_accelerated_compositing_for_external_reasons_), |
223 has_inline_transform_(o.has_inline_transform_), | 221 has_inline_transform_(o.has_inline_transform_), |
224 resize_(o.resize_), | 222 resize_(o.resize_), |
225 has_compositor_proxy_(o.has_compositor_proxy_), | 223 has_compositor_proxy_(o.has_compositor_proxy_), |
226 has_author_background_(o.has_author_background_), | 224 has_author_background_(o.has_author_background_), |
227 has_author_border_(o.has_author_border_) {} | 225 has_author_border_(o.has_author_border_) {} |
228 | 226 |
229 StyleRareNonInheritedData::~StyleRareNonInheritedData() {} | 227 StyleRareNonInheritedData::~StyleRareNonInheritedData() {} |
230 | 228 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 has_current_transform_animation_ == | 282 has_current_transform_animation_ == |
285 o.has_current_transform_animation_ && | 283 o.has_current_transform_animation_ && |
286 has_current_filter_animation_ == o.has_current_filter_animation_ && | 284 has_current_filter_animation_ == o.has_current_filter_animation_ && |
287 has_current_backdrop_filter_animation_ == | 285 has_current_backdrop_filter_animation_ == |
288 o.has_current_backdrop_filter_animation_ && | 286 o.has_current_backdrop_filter_animation_ && |
289 is_stacking_context_ == o.is_stacking_context_ && | 287 is_stacking_context_ == o.is_stacking_context_ && |
290 effective_blend_mode_ == o.effective_blend_mode_ && | 288 effective_blend_mode_ == o.effective_blend_mode_ && |
291 touch_action_ == o.touch_action_ && object_fit_ == o.object_fit_ && | 289 touch_action_ == o.touch_action_ && object_fit_ == o.object_fit_ && |
292 isolation_ == o.isolation_ && contain_ == o.contain_ && | 290 isolation_ == o.isolation_ && contain_ == o.contain_ && |
293 scroll_behavior_ == o.scroll_behavior_ && | 291 scroll_behavior_ == o.scroll_behavior_ && |
294 scroll_snap_type_ == o.scroll_snap_type_ && | |
295 requires_accelerated_compositing_for_external_reasons_ == | 292 requires_accelerated_compositing_for_external_reasons_ == |
296 o.requires_accelerated_compositing_for_external_reasons_ && | 293 o.requires_accelerated_compositing_for_external_reasons_ && |
297 has_inline_transform_ == o.has_inline_transform_ && | 294 has_inline_transform_ == o.has_inline_transform_ && |
298 resize_ == o.resize_ && | 295 resize_ == o.resize_ && |
299 has_compositor_proxy_ == o.has_compositor_proxy_ && | 296 has_compositor_proxy_ == o.has_compositor_proxy_ && |
300 has_author_background_ == o.has_author_background_ && | 297 has_author_background_ == o.has_author_background_ && |
301 has_author_border_ == o.has_author_border_; | 298 has_author_border_ == o.has_author_border_; |
302 } | 299 } |
303 | 300 |
304 } // namespace blink | 301 } // namespace blink |
OLD | NEW |