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

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

Issue 207683005: Oilpan: Move CSSAnimationData and CSSAnimationDataList to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 DataRef<StyleGridData> m_grid; 114 DataRef<StyleGridData> m_grid;
115 DataRef<StyleGridItemData> m_gridItem; 115 DataRef<StyleGridItemData> m_gridItem;
116 116
117 OwnPtr<ContentData> m_content; 117 OwnPtr<ContentData> m_content;
118 OwnPtr<CounterDirectiveMap> m_counterDirectives; 118 OwnPtr<CounterDirectiveMap> m_counterDirectives;
119 119
120 RefPtr<ShadowList> m_boxShadow; 120 RefPtr<ShadowList> m_boxShadow;
121 121
122 RefPtr<StyleReflection> m_boxReflect; 122 RefPtr<StyleReflection> m_boxReflect;
123 123
124 OwnPtr<CSSAnimationDataList> m_animations; 124 OwnPtrWillBePersistent<CSSAnimationDataList> m_animations;
125 OwnPtr<CSSAnimationDataList> m_transitions; 125 OwnPtrWillBePersistent<CSSAnimationDataList> m_transitions;
haraken 2014/03/25 12:47:37 At first I forgot to change this OwnPtr to OwnPtrW
126 126
127 FillLayer m_mask; 127 FillLayer m_mask;
128 NinePieceImage m_maskBoxImage; 128 NinePieceImage m_maskBoxImage;
129 129
130 LengthSize m_pageSize; 130 LengthSize m_pageSize;
131 131
132 RefPtr<ShapeValue> m_shapeInside; 132 RefPtr<ShapeValue> m_shapeInside;
133 RefPtr<ShapeValue> m_shapeOutside; 133 RefPtr<ShapeValue> m_shapeOutside;
134 Length m_shapeMargin; 134 Length m_shapeMargin;
135 Length m_shapePadding; 135 Length m_shapePadding;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 unsigned m_scrollBehavior: 2; 195 unsigned m_scrollBehavior: 2;
196 196
197 private: 197 private:
198 StyleRareNonInheritedData(); 198 StyleRareNonInheritedData();
199 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 199 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
200 }; 200 };
201 201
202 } // namespace WebCore 202 } // namespace WebCore
203 203
204 #endif // StyleRareNonInheritedData_h 204 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698