| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. | 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. |
| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 class ElementRareData; | 56 class ElementRareData; |
| 57 class ElementShadow; | 57 class ElementShadow; |
| 58 class ExceptionState; | 58 class ExceptionState; |
| 59 class Image; | 59 class Image; |
| 60 class IntSize; | 60 class IntSize; |
| 61 class Locale; | 61 class Locale; |
| 62 class MutableStylePropertySet; | 62 class MutableStylePropertySet; |
| 63 class NodeIntersectionObserverData; | 63 class NodeIntersectionObserverData; |
| 64 class PropertySetCSSStyleDeclaration; | 64 class PropertySetCSSStyleDeclaration; |
| 65 class PseudoElement; | 65 class PseudoElement; |
| 66 class ResizeObservation; |
| 67 class ResizeObserver; |
| 66 class ScrollState; | 68 class ScrollState; |
| 67 class ScrollStateCallback; | 69 class ScrollStateCallback; |
| 68 class ScrollToOptions; | 70 class ScrollToOptions; |
| 69 class ShadowRoot; | 71 class ShadowRoot; |
| 70 class ShadowRootInit; | 72 class ShadowRootInit; |
| 71 class StylePropertySet; | 73 class StylePropertySet; |
| 72 class StylePropertyMap; | 74 class StylePropertyMap; |
| 73 | 75 |
| 74 enum SpellcheckAttributeState { | 76 enum SpellcheckAttributeState { |
| 75 SpellcheckAttributeTrue, | 77 SpellcheckAttributeTrue, |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 | 572 |
| 571 DECLARE_VIRTUAL_TRACE(); | 573 DECLARE_VIRTUAL_TRACE(); |
| 572 | 574 |
| 573 DECLARE_VIRTUAL_TRACE_WRAPPERS(); | 575 DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
| 574 | 576 |
| 575 SpellcheckAttributeState spellcheckAttributeState() const; | 577 SpellcheckAttributeState spellcheckAttributeState() const; |
| 576 | 578 |
| 577 NodeIntersectionObserverData* intersectionObserverData() const; | 579 NodeIntersectionObserverData* intersectionObserverData() const; |
| 578 NodeIntersectionObserverData& ensureIntersectionObserverData(); | 580 NodeIntersectionObserverData& ensureIntersectionObserverData(); |
| 579 | 581 |
| 582 HeapHashMap<Member<ResizeObserver>, Member<ResizeObservation>>* resizeObserv
erData() const; |
| 583 HeapHashMap<Member<ResizeObserver>, Member<ResizeObservation>>& ensureResize
ObserverData(); |
| 584 |
| 580 protected: | 585 protected: |
| 581 Element(const QualifiedName& tagName, Document*, ConstructionType); | 586 Element(const QualifiedName& tagName, Document*, ConstructionType); |
| 582 | 587 |
| 583 const ElementData* elementData() const { return m_elementData.get(); } | 588 const ElementData* elementData() const { return m_elementData.get(); } |
| 584 UniqueElementData& ensureUniqueElementData(); | 589 UniqueElementData& ensureUniqueElementData(); |
| 585 | 590 |
| 586 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, CSSValueID identifier); | 591 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, CSSValueID identifier); |
| 587 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, double value, CSSPrimitiveValue::UnitType); | 592 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, double value, CSSPrimitiveValue::UnitType); |
| 588 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, const String& value); | 593 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, const String& value); |
| 589 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, CSSValue*); | 594 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, CSSPr
opertyID, CSSValue*); |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 static T* create(const QualifiedName&, Document&) | 972 static T* create(const QualifiedName&, Document&) |
| 968 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 973 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 969 T* T::create(const QualifiedName& tagName, Document& document) \ | 974 T* T::create(const QualifiedName& tagName, Document& document) \ |
| 970 { \ | 975 { \ |
| 971 return new T(tagName, document); \ | 976 return new T(tagName, document); \ |
| 972 } | 977 } |
| 973 | 978 |
| 974 } // namespace blink | 979 } // namespace blink |
| 975 | 980 |
| 976 #endif // Element_h | 981 #endif // Element_h |
| OLD | NEW |