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

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

Issue 2170793002: Add Node.getRootNode(options) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Created 4 years, 4 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. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class ContainerNode; 48 class ContainerNode;
49 class DOMTokenList; 49 class DOMTokenList;
50 class Document; 50 class Document;
51 class Element; 51 class Element;
52 class ElementShadow; 52 class ElementShadow;
53 class Event; 53 class Event;
54 class EventDispatchMediator; 54 class EventDispatchMediator;
55 class EventListener; 55 class EventListener;
56 class ExceptionState; 56 class ExceptionState;
57 class FloatPoint; 57 class FloatPoint;
58 class GetRootNodeOptions;
58 class LocalFrame; 59 class LocalFrame;
59 class HTMLInputElement; 60 class HTMLInputElement;
60 class HTMLQualifiedName; 61 class HTMLQualifiedName;
61 class HTMLSlotElement; 62 class HTMLSlotElement;
62 class IntRect; 63 class IntRect;
63 class EventDispatchHandlingState; 64 class EventDispatchHandlingState;
64 class KeyboardEvent; 65 class KeyboardEvent;
65 class NSResolver; 66 class NSResolver;
66 class NameNodeList; 67 class NameNodeList;
67 class NamedNodeMap; 68 class NamedNodeMap;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 virtual NodeType getNodeType() const = 0; 195 virtual NodeType getNodeType() const = 0;
195 ContainerNode* parentNode() const; 196 ContainerNode* parentNode() const;
196 Element* parentElement() const; 197 Element* parentElement() const;
197 ContainerNode* parentElementOrShadowRoot() const; 198 ContainerNode* parentElementOrShadowRoot() const;
198 ContainerNode* parentElementOrDocumentFragment() const; 199 ContainerNode* parentElementOrDocumentFragment() const;
199 Node* previousSibling() const { return m_previous; } 200 Node* previousSibling() const { return m_previous; }
200 Node* nextSibling() const { return m_next; } 201 Node* nextSibling() const { return m_next; }
201 NodeList* childNodes(); 202 NodeList* childNodes();
202 Node* firstChild() const; 203 Node* firstChild() const;
203 Node* lastChild() const; 204 Node* lastChild() const;
205 Node* getRootNode(const GetRootNodeOptions&) const;
204 Node& treeRoot() const; 206 Node& treeRoot() const;
205 Node& shadowIncludingRoot() const; 207 Node& shadowIncludingRoot() const;
206 bool isUnclosedNodeOf(const Node&) const; 208 bool isUnclosedNodeOf(const Node&) const;
207 209
208 void prepend(const HeapVector<NodeOrString>&, ExceptionState&); 210 void prepend(const HeapVector<NodeOrString>&, ExceptionState&);
209 void append(const HeapVector<NodeOrString>&, ExceptionState&); 211 void append(const HeapVector<NodeOrString>&, ExceptionState&);
210 void before(const HeapVector<NodeOrString>&, ExceptionState&); 212 void before(const HeapVector<NodeOrString>&, ExceptionState&);
211 void after(const HeapVector<NodeOrString>&, ExceptionState&); 213 void after(const HeapVector<NodeOrString>&, ExceptionState&);
212 void replaceWith(const HeapVector<NodeOrString>&, ExceptionState&); 214 void replaceWith(const HeapVector<NodeOrString>&, ExceptionState&);
213 void remove(ExceptionState& = ASSERT_NO_EXCEPTION); 215 void remove(ExceptionState& = ASSERT_NO_EXCEPTION);
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 } // namespace blink 892 } // namespace blink
891 893
892 #ifndef NDEBUG 894 #ifndef NDEBUG
893 // Outside the WebCore namespace for ease of invocation from gdb. 895 // Outside the WebCore namespace for ease of invocation from gdb.
894 void showNode(const blink::Node*); 896 void showNode(const blink::Node*);
895 void showTree(const blink::Node*); 897 void showTree(const blink::Node*);
896 void showNodePath(const blink::Node*); 898 void showNodePath(const blink::Node*);
897 #endif 899 #endif
898 900
899 #endif // Node_h 901 #endif // Node_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/GetRootNodeOptions.idl ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698