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

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

Issue 307433003: Oilpan: Allocate all EventTarget derived types on the manged heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 6 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/FontFaceSet.cpp ('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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 124
125 private: 125 private:
126 short m_tabindex; 126 short m_tabindex;
127 127
128 IntSize m_savedLayerScrollOffset; 128 IntSize m_savedLayerScrollOffset;
129 129
130 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset; 130 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset;
131 OwnPtrWillBeMember<ClassList> m_classList; 131 OwnPtrWillBeMember<ClassList> m_classList;
132 OwnPtrWillBeMember<ElementShadow> m_shadow; 132 OwnPtrWillBeMember<ElementShadow> m_shadow;
133 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap; 133 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap;
134 OwnPtr<InputMethodContext> m_inputMethodContext; 134 OwnPtrWillBeMember<InputMethodContext> m_inputMethodContext;
135 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations; 135 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations;
136 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper; 136 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper;
137 137
138 RefPtr<RenderStyle> m_computedStyle; 138 RefPtr<RenderStyle> m_computedStyle;
139 RefPtr<CustomElementDefinition> m_customElementDefinition; 139 RefPtr<CustomElementDefinition> m_customElementDefinition;
140 140
141 RefPtrWillBeMember<PseudoElement> m_generatedBefore; 141 RefPtrWillBeMember<PseudoElement> m_generatedBefore;
142 RefPtrWillBeMember<PseudoElement> m_generatedAfter; 142 RefPtrWillBeMember<PseudoElement> m_generatedAfter;
143 RefPtrWillBeMember<PseudoElement> m_backdrop; 143 RefPtrWillBeMember<PseudoElement> m_backdrop;
144 144
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 } 212 }
213 213
214 inline void ElementRareData::resetStyleState() 214 inline void ElementRareData::resetStyleState()
215 { 215 {
216 clearElementFlag(StyleAffectedByEmpty); 216 clearElementFlag(StyleAffectedByEmpty);
217 } 217 }
218 218
219 } // namespace 219 } // namespace
220 220
221 #endif // ElementRareData_h 221 #endif // ElementRareData_h
OLDNEW
« no previous file with comments | « Source/core/css/FontFaceSet.cpp ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698