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

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

Issue 14409013: Rename CSSAnimationData* -> StyleAnimationData* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 | « Source/core/rendering/style/StyleRareNonInheritedData.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 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 , m_marquee(o.m_marquee) 104 , m_marquee(o.m_marquee)
105 , m_multiCol(o.m_multiCol) 105 , m_multiCol(o.m_multiCol)
106 , m_transform(o.m_transform) 106 , m_transform(o.m_transform)
107 , m_filter(o.m_filter) 107 , m_filter(o.m_filter)
108 , m_grid(o.m_grid) 108 , m_grid(o.m_grid)
109 , m_gridItem(o.m_gridItem) 109 , m_gridItem(o.m_gridItem)
110 , m_content(o.m_content ? o.m_content->clone() : nullptr) 110 , m_content(o.m_content ? o.m_content->clone() : nullptr)
111 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr) 111 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr)
112 , m_boxShadow(o.m_boxShadow ? adoptPtr(new ShadowData(*o.m_boxShadow)) : nul lptr) 112 , m_boxShadow(o.m_boxShadow ? adoptPtr(new ShadowData(*o.m_boxShadow)) : nul lptr)
113 , m_boxReflect(o.m_boxReflect) 113 , m_boxReflect(o.m_boxReflect)
114 , m_animations(o.m_animations ? adoptPtr(new CSSAnimationDataList(*o.m_anima tions)) : nullptr) 114 , m_animations(o.m_animations ? adoptPtr(new StyleAnimationDataList(*o.m_ani mations)) : nullptr)
115 , m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_tra nsitions)) : nullptr) 115 , m_transitions(o.m_transitions ? adoptPtr(new StyleAnimationDataList(*o.m_t ransitions)) : nullptr)
116 , m_mask(o.m_mask) 116 , m_mask(o.m_mask)
117 , m_maskBoxImage(o.m_maskBoxImage) 117 , m_maskBoxImage(o.m_maskBoxImage)
118 , m_pageSize(o.m_pageSize) 118 , m_pageSize(o.m_pageSize)
119 , m_shapeInside(o.m_shapeInside) 119 , m_shapeInside(o.m_shapeInside)
120 , m_shapeOutside(o.m_shapeOutside) 120 , m_shapeOutside(o.m_shapeOutside)
121 , m_shapeMargin(o.m_shapeMargin) 121 , m_shapeMargin(o.m_shapeMargin)
122 , m_shapePadding(o.m_shapePadding) 122 , m_shapePadding(o.m_shapePadding)
123 , m_clipPath(o.m_clipPath) 123 , m_clipPath(o.m_clipPath)
124 #if ENABLE(CSS3_TEXT) 124 #if ENABLE(CSS3_TEXT)
125 , m_textDecorationColor(o.m_textDecorationColor) 125 , m_textDecorationColor(o.m_textDecorationColor)
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 info.addMember(m_regionThread, "regionThread"); 329 info.addMember(m_regionThread, "regionThread");
330 330
331 info.ignoreMember(m_perspectiveOriginX); 331 info.ignoreMember(m_perspectiveOriginX);
332 info.ignoreMember(m_perspectiveOriginY); 332 info.ignoreMember(m_perspectiveOriginY);
333 info.ignoreMember(m_pageSize); 333 info.ignoreMember(m_pageSize);
334 info.ignoreMember(m_shapeMargin); 334 info.ignoreMember(m_shapeMargin);
335 info.ignoreMember(m_shapePadding); 335 info.ignoreMember(m_shapePadding);
336 } 336 }
337 337
338 } // namespace WebCore 338 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698