| OLD | NEW |
| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 * | 19 * |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef ElementRareData_h | 22 #ifndef ElementRareData_h |
| 23 #define ElementRareData_h | 23 #define ElementRareData_h |
| 24 | 24 |
| 25 #include <memory> | 25 #include <memory> |
| 26 #include "bindings/core/v8/ScriptWrappableVisitor.h" | |
| 27 #include "core/animation/ElementAnimations.h" | 26 #include "core/animation/ElementAnimations.h" |
| 28 #include "core/css/cssom/InlineStylePropertyMap.h" | 27 #include "core/css/cssom/InlineStylePropertyMap.h" |
| 29 #include "core/dom/AccessibleNode.h" | 28 #include "core/dom/AccessibleNode.h" |
| 30 #include "core/dom/Attr.h" | 29 #include "core/dom/Attr.h" |
| 31 #include "core/dom/CompositorProxiedPropertySet.h" | 30 #include "core/dom/CompositorProxiedPropertySet.h" |
| 32 #include "core/dom/DatasetDOMStringMap.h" | 31 #include "core/dom/DatasetDOMStringMap.h" |
| 33 #include "core/dom/ElementIntersectionObserverData.h" | 32 #include "core/dom/ElementIntersectionObserverData.h" |
| 34 #include "core/dom/NamedNodeMap.h" | 33 #include "core/dom/NamedNodeMap.h" |
| 35 #include "core/dom/NodeRareData.h" | 34 #include "core/dom/NodeRareData.h" |
| 36 #include "core/dom/PseudoElement.h" | 35 #include "core/dom/PseudoElement.h" |
| 37 #include "core/dom/PseudoElementData.h" | 36 #include "core/dom/PseudoElementData.h" |
| 38 #include "core/dom/custom/CustomElementDefinition.h" | 37 #include "core/dom/custom/CustomElementDefinition.h" |
| 39 #include "core/dom/custom/V0CustomElementDefinition.h" | 38 #include "core/dom/custom/V0CustomElementDefinition.h" |
| 40 #include "core/dom/shadow/ElementShadow.h" | 39 #include "core/dom/shadow/ElementShadow.h" |
| 41 #include "core/html/ClassList.h" | 40 #include "core/html/ClassList.h" |
| 41 #include "platform/bindings/ScriptWrappableVisitor.h" |
| 42 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
| 43 #include "platform/wtf/HashSet.h" | 43 #include "platform/wtf/HashSet.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class CompositorProxiedPropertySet; | 47 class CompositorProxiedPropertySet; |
| 48 class ResizeObservation; | 48 class ResizeObservation; |
| 49 class ResizeObserver; | 49 class ResizeObserver; |
| 50 | 50 |
| 51 class ElementRareData : public NodeRareData { | 51 class ElementRareData : public NodeRareData { |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 inline CompositorProxiedPropertySet& | 284 inline CompositorProxiedPropertySet& |
| 285 ElementRareData::EnsureCompositorProxiedPropertySet() { | 285 ElementRareData::EnsureCompositorProxiedPropertySet() { |
| 286 if (!proxied_properties_) | 286 if (!proxied_properties_) |
| 287 proxied_properties_ = CompositorProxiedPropertySet::Create(); | 287 proxied_properties_ = CompositorProxiedPropertySet::Create(); |
| 288 return *proxied_properties_; | 288 return *proxied_properties_; |
| 289 } | 289 } |
| 290 | 290 |
| 291 } // namespace blink | 291 } // namespace blink |
| 292 | 292 |
| 293 #endif // ElementRareData_h | 293 #endif // ElementRareData_h |
| OLD | NEW |