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

Side by Side Diff: Source/core/dom/ElementRareData.h

Issue 195953003: Oilpan: Move CSSStyleDeclaration and subclasses to the heap using transistion types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review feedback 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
« no previous file with comments | « Source/core/css/parser/MediaQueryParser.h ('k') | Source/core/dom/ElementRareData.cpp » ('j') | 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) 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> 3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com>
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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 LayoutSize m_minimumSizeForResizing; 135 LayoutSize m_minimumSizeForResizing;
136 IntSize m_savedLayerScrollOffset; 136 IntSize m_savedLayerScrollOffset;
137 137
138 OwnPtr<DatasetDOMStringMap> m_dataset; 138 OwnPtr<DatasetDOMStringMap> m_dataset;
139 OwnPtr<ClassList> m_classList; 139 OwnPtr<ClassList> m_classList;
140 OwnPtr<ElementShadow> m_shadow; 140 OwnPtr<ElementShadow> m_shadow;
141 OwnPtr<NamedNodeMap> m_attributeMap; 141 OwnPtr<NamedNodeMap> m_attributeMap;
142 OwnPtr<InputMethodContext> m_inputMethodContext; 142 OwnPtr<InputMethodContext> m_inputMethodContext;
143 OwnPtr<ActiveAnimations> m_activeAnimations; 143 OwnPtr<ActiveAnimations> m_activeAnimations;
144 OwnPtr<InlineCSSStyleDeclaration> m_cssomWrapper; 144 OwnPtrWillBePersistent<InlineCSSStyleDeclaration> m_cssomWrapper;
145 145
146 RefPtr<RenderStyle> m_computedStyle; 146 RefPtr<RenderStyle> m_computedStyle;
147 RefPtr<CustomElementDefinition> m_customElementDefinition; 147 RefPtr<CustomElementDefinition> m_customElementDefinition;
148 148
149 RefPtr<PseudoElement> m_generatedBefore; 149 RefPtr<PseudoElement> m_generatedBefore;
150 RefPtr<PseudoElement> m_generatedAfter; 150 RefPtr<PseudoElement> m_generatedAfter;
151 RefPtr<PseudoElement> m_backdrop; 151 RefPtr<PseudoElement> m_backdrop;
152 152
153 explicit ElementRareData(RenderObject*); 153 explicit ElementRareData(RenderObject*);
154 }; 154 };
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 clearFlag(ChildrenAffectedByLastChildRules); 240 clearFlag(ChildrenAffectedByLastChildRules);
241 clearFlag(ChildrenAffectedByDirectAdjacentRules); 241 clearFlag(ChildrenAffectedByDirectAdjacentRules);
242 clearFlag(ChildrenAffectedByIndirectAdjacentRules); 242 clearFlag(ChildrenAffectedByIndirectAdjacentRules);
243 clearFlag(ChildrenAffectedByForwardPositionalRules); 243 clearFlag(ChildrenAffectedByForwardPositionalRules);
244 clearFlag(ChildrenAffectedByBackwardPositionalRules); 244 clearFlag(ChildrenAffectedByBackwardPositionalRules);
245 } 245 }
246 246
247 } // namespace 247 } // namespace
248 248
249 #endif // ElementRareData_h 249 #endif // ElementRareData_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/MediaQueryParser.h ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698