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

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

Issue 2197653002: CL for perf try job on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 ContainerNode* parentElementOrShadowRoot() const; 201 ContainerNode* parentElementOrShadowRoot() const;
202 ContainerNode* parentElementOrDocumentFragment() const; 202 ContainerNode* parentElementOrDocumentFragment() const;
203 Node* previousSibling() const { return m_previous; } 203 Node* previousSibling() const { return m_previous; }
204 Node* nextSibling() const { return m_next; } 204 Node* nextSibling() const { return m_next; }
205 NodeList* childNodes(); 205 NodeList* childNodes();
206 Node* firstChild() const; 206 Node* firstChild() const;
207 Node* lastChild() const; 207 Node* lastChild() const;
208 Node* getRootNode(const GetRootNodeOptions&) const; 208 Node* getRootNode(const GetRootNodeOptions&) const;
209 Node& treeRoot() const; 209 Node& treeRoot() const;
210 Node& shadowIncludingRoot() const; 210 Node& shadowIncludingRoot() const;
211 bool isUnclosedNodeOf(const Node&) const;
212 211
213 void prepend(const HeapVector<NodeOrString>&, ExceptionState&); 212 void prepend(const HeapVector<NodeOrString>&, ExceptionState&);
214 void append(const HeapVector<NodeOrString>&, ExceptionState&); 213 void append(const HeapVector<NodeOrString>&, ExceptionState&);
215 void before(const HeapVector<NodeOrString>&, ExceptionState&); 214 void before(const HeapVector<NodeOrString>&, ExceptionState&);
216 void after(const HeapVector<NodeOrString>&, ExceptionState&); 215 void after(const HeapVector<NodeOrString>&, ExceptionState&);
217 void replaceWith(const HeapVector<NodeOrString>&, ExceptionState&); 216 void replaceWith(const HeapVector<NodeOrString>&, ExceptionState&);
218 void remove(ExceptionState& = ASSERT_NO_EXCEPTION); 217 void remove(ExceptionState& = ASSERT_NO_EXCEPTION);
219 218
220 Node* pseudoAwareNextSibling() const; 219 Node* pseudoAwareNextSibling() const;
221 Node* pseudoAwarePreviousSibling() const; 220 Node* pseudoAwarePreviousSibling() const;
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 } // namespace blink 881 } // namespace blink
883 882
884 #ifndef NDEBUG 883 #ifndef NDEBUG
885 // Outside the WebCore namespace for ease of invocation from gdb. 884 // Outside the WebCore namespace for ease of invocation from gdb.
886 void showNode(const blink::Node*); 885 void showNode(const blink::Node*);
887 void showTree(const blink::Node*); 886 void showTree(const blink::Node*);
888 void showNodePath(const blink::Node*); 887 void showNodePath(const blink::Node*);
889 #endif 888 #endif
890 889
891 #endif // Node_h 890 #endif // Node_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.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