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

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

Issue 2836753002: Rebuild layout tree in flat tree order. (Closed)
Patch Set: Rebased Created 3 years, 7 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
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 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
7 * (http://www.torchmobile.com/) 7 * (http://www.torchmobile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 void RegisterTransientMutationObserver(MutationObserverRegistration*); 798 void RegisterTransientMutationObserver(MutationObserverRegistration*);
799 void UnregisterTransientMutationObserver(MutationObserverRegistration*); 799 void UnregisterTransientMutationObserver(MutationObserverRegistration*);
800 void NotifyMutationObserversNodeWillDetach(); 800 void NotifyMutationObserversNodeWillDetach();
801 801
802 unsigned ConnectedSubframeCount() const; 802 unsigned ConnectedSubframeCount() const;
803 void IncrementConnectedSubframeCount(); 803 void IncrementConnectedSubframeCount();
804 void DecrementConnectedSubframeCount(); 804 void DecrementConnectedSubframeCount();
805 805
806 StaticNodeList* getDestinationInsertionPoints(); 806 StaticNodeList* getDestinationInsertionPoints();
807 HTMLSlotElement* AssignedSlot() const; 807 HTMLSlotElement* AssignedSlot() const;
808 HTMLSlotElement* FinalDestinationSlot() const;
808 HTMLSlotElement* assignedSlotForBinding(); 809 HTMLSlotElement* assignedSlotForBinding();
809 810
810 bool IsFinishedParsingChildren() const { 811 bool IsFinishedParsingChildren() const {
811 return GetFlag(kIsFinishedParsingChildrenFlag); 812 return GetFlag(kIsFinishedParsingChildrenFlag);
812 } 813 }
813 814
814 void CheckSlotChange(SlotChangeType); 815 void CheckSlotChange(SlotChangeType);
815 void CheckSlotChangeAfterInserted() { 816 void CheckSlotChangeAfterInserted() {
816 CheckSlotChange(SlotChangeType::kInitial); 817 CheckSlotChange(SlotChangeType::kInitial);
817 } 818 }
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 } // namespace blink 1039 } // namespace blink
1039 1040
1040 #ifndef NDEBUG 1041 #ifndef NDEBUG
1041 // Outside the WebCore namespace for ease of invocation from gdb. 1042 // Outside the WebCore namespace for ease of invocation from gdb.
1042 void showNode(const blink::Node*); 1043 void showNode(const blink::Node*);
1043 void showTree(const blink::Node*); 1044 void showTree(const blink::Node*);
1044 void showNodePath(const blink::Node*); 1045 void showNodePath(const blink::Node*);
1045 #endif 1046 #endif
1046 1047
1047 #endif // Node_h 1048 #endif // Node_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ContainerNode.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698