| 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 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 class IntersectionObserverController; | 129 class IntersectionObserverController; |
| 130 class LayoutPoint; | 130 class LayoutPoint; |
| 131 class LiveNodeListBase; | 131 class LiveNodeListBase; |
| 132 class Locale; | 132 class Locale; |
| 133 class LocalFrame; | 133 class LocalFrame; |
| 134 class Location; | 134 class Location; |
| 135 class MainThreadTaskRunner; | 135 class MainThreadTaskRunner; |
| 136 class MediaQueryListListener; | 136 class MediaQueryListListener; |
| 137 class MediaQueryMatcher; | 137 class MediaQueryMatcher; |
| 138 class NodeFilter; | 138 class NodeFilter; |
| 139 class NodeIntersectionObserverData; |
| 139 class NodeIterator; | 140 class NodeIterator; |
| 140 class NthIndexCache; | 141 class NthIndexCache; |
| 141 class OriginAccessEntry; | 142 class OriginAccessEntry; |
| 142 class Page; | 143 class Page; |
| 143 class PlatformMouseEvent; | 144 class PlatformMouseEvent; |
| 144 class ProcessingInstruction; | 145 class ProcessingInstruction; |
| 145 class QualifiedName; | 146 class QualifiedName; |
| 146 class Range; | 147 class Range; |
| 147 class LayoutView; | 148 class LayoutView; |
| 148 class ResourceFetcher; | 149 class ResourceFetcher; |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 { | 683 { |
| 683 return m_mutationObserverTypes & type; | 684 return m_mutationObserverTypes & type; |
| 684 } | 685 } |
| 685 bool hasMutationObservers() const { return m_mutationObserverTypes; } | 686 bool hasMutationObservers() const { return m_mutationObserverTypes; } |
| 686 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs
erverTypes |= types; } | 687 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs
erverTypes |= types; } |
| 687 | 688 |
| 688 WeakPtrWillBeRawPtr<Document> createWeakPtr(); | 689 WeakPtrWillBeRawPtr<Document> createWeakPtr(); |
| 689 | 690 |
| 690 IntersectionObserverController* intersectionObserverController(); | 691 IntersectionObserverController* intersectionObserverController(); |
| 691 IntersectionObserverController& ensureIntersectionObserverController(); | 692 IntersectionObserverController& ensureIntersectionObserverController(); |
| 693 NodeIntersectionObserverData& ensureIntersectionObserverData(); |
| 692 | 694 |
| 693 void updateViewportDescription(); | 695 void updateViewportDescription(); |
| 694 void processReferrerPolicy(const String& policy); | 696 void processReferrerPolicy(const String& policy); |
| 695 | 697 |
| 696 // Returns the owning element in the parent document. | 698 // Returns the owning element in the parent document. |
| 697 // Returns nullptr if this is the top level document. | 699 // Returns nullptr if this is the top level document. |
| 698 HTMLFrameOwnerElement* ownerElement() const; | 700 HTMLFrameOwnerElement* ownerElement() const; |
| 699 | 701 |
| 700 // Returns true if this document belongs to a frame that the parent document | 702 // Returns true if this document belongs to a frame that the parent document |
| 701 // made invisible (for instance by setting as style display:none). | 703 // made invisible (for instance by setting as style display:none). |
| (...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1398 | 1400 |
| 1399 ParserSynchronizationPolicy m_parserSyncPolicy; | 1401 ParserSynchronizationPolicy m_parserSyncPolicy; |
| 1400 | 1402 |
| 1401 OriginsUsingFeatures::Value m_originsUsingFeaturesValue; | 1403 OriginsUsingFeatures::Value m_originsUsingFeaturesValue; |
| 1402 | 1404 |
| 1403 ClientHintsPreferences m_clientHintsPreferences; | 1405 ClientHintsPreferences m_clientHintsPreferences; |
| 1404 | 1406 |
| 1405 PersistentWillBeMember<CanvasFontCache> m_canvasFontCache; | 1407 PersistentWillBeMember<CanvasFontCache> m_canvasFontCache; |
| 1406 | 1408 |
| 1407 PersistentWillBeMember<IntersectionObserverController> m_intersectionObserve
rController; | 1409 PersistentWillBeMember<IntersectionObserverController> m_intersectionObserve
rController; |
| 1410 PersistentWillBeMember<NodeIntersectionObserverData> m_intersectionObserverD
ata; |
| 1408 | 1411 |
| 1409 int m_nodeCount; | 1412 int m_nodeCount; |
| 1410 }; | 1413 }; |
| 1411 | 1414 |
| 1412 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Document>
; | 1415 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Document>
; |
| 1413 | 1416 |
| 1414 inline bool Document::shouldOverrideLegacyDescription(ViewportDescription::Type
origin) | 1417 inline bool Document::shouldOverrideLegacyDescription(ViewportDescription::Type
origin) |
| 1415 { | 1418 { |
| 1416 // The different (legacy) meta tags have different priorities based on the t
ype | 1419 // The different (legacy) meta tags have different priorities based on the t
ype |
| 1417 // regardless of which order they appear in the DOM. The priority is given b
y the | 1420 // regardless of which order they appear in the DOM. The priority is given b
y the |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1452 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1450 | 1453 |
| 1451 } // namespace blink | 1454 } // namespace blink |
| 1452 | 1455 |
| 1453 #ifndef NDEBUG | 1456 #ifndef NDEBUG |
| 1454 // Outside the WebCore namespace for ease of invocation from gdb. | 1457 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1455 CORE_EXPORT void showLiveDocumentInstances(); | 1458 CORE_EXPORT void showLiveDocumentInstances(); |
| 1456 #endif | 1459 #endif |
| 1457 | 1460 |
| 1458 #endif // Document_h | 1461 #endif // Document_h |
| OLD | NEW |