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

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

Issue 1552213002: Implement suspend/resume for IntersectionObserver notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@intersection-observer
Patch Set: Create IntersectionObserverController on demand Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.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) 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 680
681 bool hasMutationObserversOfType(MutationObserver::MutationType type) const 681 bool hasMutationObserversOfType(MutationObserver::MutationType type) const
682 { 682 {
683 return m_mutationObserverTypes & type; 683 return m_mutationObserverTypes & type;
684 } 684 }
685 bool hasMutationObservers() const { return m_mutationObserverTypes; } 685 bool hasMutationObservers() const { return m_mutationObserverTypes; }
686 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs erverTypes |= types; } 686 void addMutationObserverTypes(MutationObserverOptions types) { m_mutationObs erverTypes |= types; }
687 687
688 WeakPtrWillBeRawPtr<Document> createWeakPtr(); 688 WeakPtrWillBeRawPtr<Document> createWeakPtr();
689 689
690 IntersectionObserverController* intersectionObserverController();
690 IntersectionObserverController& ensureIntersectionObserverController(); 691 IntersectionObserverController& ensureIntersectionObserverController();
691 692
692 void updateViewportDescription(); 693 void updateViewportDescription();
693 void processReferrerPolicy(const String& policy); 694 void processReferrerPolicy(const String& policy);
694 695
695 // Returns the owning element in the parent document. 696 // Returns the owning element in the parent document.
696 // Returns nullptr if this is the top level document. 697 // Returns nullptr if this is the top level document.
697 HTMLFrameOwnerElement* ownerElement() const; 698 HTMLFrameOwnerElement* ownerElement() const;
698 699
699 // Returns true if this document belongs to a frame that the parent document 700 // Returns true if this document belongs to a frame that the parent document
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
1448 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1449 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1449 1450
1450 } // namespace blink 1451 } // namespace blink
1451 1452
1452 #ifndef NDEBUG 1453 #ifndef NDEBUG
1453 // Outside the WebCore namespace for ease of invocation from gdb. 1454 // Outside the WebCore namespace for ease of invocation from gdb.
1454 CORE_EXPORT void showLiveDocumentInstances(); 1455 CORE_EXPORT void showLiveDocumentInstances();
1455 #endif 1456 #endif
1456 1457
1457 #endif // Document_h 1458 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698