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

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

Issue 1512473002: Oilpan: fix build after r363737. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another include addition needed Created 5 years 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 | « third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp ('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) 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 LayoutSize m_minimumSizeForResizing; 134 LayoutSize m_minimumSizeForResizing;
135 IntSize m_savedLayerScrollOffset; 135 IntSize m_savedLayerScrollOffset;
136 136
137 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset; 137 OwnPtrWillBeMember<DatasetDOMStringMap> m_dataset;
138 OwnPtrWillBeMember<ClassList> m_classList; 138 OwnPtrWillBeMember<ClassList> m_classList;
139 OwnPtrWillBeMember<ElementShadow> m_shadow; 139 OwnPtrWillBeMember<ElementShadow> m_shadow;
140 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap; 140 OwnPtrWillBeMember<NamedNodeMap> m_attributeMap;
141 OwnPtrWillBeMember<AttrNodeList> m_attrNodeList; 141 OwnPtrWillBeMember<AttrNodeList> m_attrNodeList;
142 PersistentWillBeMember<ElementAnimations> m_elementAnimations; 142 PersistentWillBeMember<ElementAnimations> m_elementAnimations;
143 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper; 143 OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper;
144 OwnPtrWillBeMember<CompositorProxiedPropertySet> m_proxiedProperties; 144 OwnPtr<CompositorProxiedPropertySet> m_proxiedProperties;
145 145
146 RefPtr<ComputedStyle> m_computedStyle; 146 RefPtr<ComputedStyle> m_computedStyle;
147 RefPtrWillBeMember<CustomElementDefinition> m_customElementDefinition; 147 RefPtrWillBeMember<CustomElementDefinition> m_customElementDefinition;
148 148
149 RefPtrWillBeMember<PseudoElement> m_generatedBefore; 149 RefPtrWillBeMember<PseudoElement> m_generatedBefore;
150 RefPtrWillBeMember<PseudoElement> m_generatedAfter; 150 RefPtrWillBeMember<PseudoElement> m_generatedAfter;
151 RefPtrWillBeMember<PseudoElement> m_generatedFirstLetter; 151 RefPtrWillBeMember<PseudoElement> m_generatedFirstLetter;
152 RefPtrWillBeMember<PseudoElement> m_backdrop; 152 RefPtrWillBeMember<PseudoElement> m_backdrop;
153 153
154 explicit ElementRareData(LayoutObject*); 154 explicit ElementRareData(LayoutObject*);
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 inline CompositorProxiedPropertySet& ElementRareData::ensureCompositorProxiedPro pertySet() 252 inline CompositorProxiedPropertySet& ElementRareData::ensureCompositorProxiedPro pertySet()
253 { 253 {
254 if (!m_proxiedProperties) 254 if (!m_proxiedProperties)
255 m_proxiedProperties = CompositorProxiedPropertySet::create(); 255 m_proxiedProperties = CompositorProxiedPropertySet::create();
256 return *m_proxiedProperties; 256 return *m_proxiedProperties;
257 } 257 }
258 258
259 } // namespace 259 } // namespace
260 260
261 #endif // ElementRareData_h 261 #endif // ElementRareData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698