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

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

Issue 2809213003: Blink Rename follow-up: BRs --big-rename--> _b_rs --this-fix--> _brs. (Closed)
Patch Set: Created 3 years, 8 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/Node.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 * 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 bool hasChildren() const { return firstChild(); } 226 bool hasChildren() const { return firstChild(); }
227 virtual Node* cloneNode(bool deep, ExceptionState& = ASSERT_NO_EXCEPTION) = 0; 227 virtual Node* cloneNode(bool deep, ExceptionState& = ASSERT_NO_EXCEPTION) = 0;
228 void normalize(); 228 void normalize();
229 229
230 bool isEqualNode(Node*) const; 230 bool isEqualNode(Node*) const;
231 bool isSameNode(const Node* other) const { return this == other; } 231 bool isSameNode(const Node* other) const { return this == other; }
232 bool isDefaultNamespace(const AtomicString& namespace_uri) const; 232 bool isDefaultNamespace(const AtomicString& namespace_uri) const;
233 const AtomicString& lookupPrefix(const AtomicString& namespace_uri) const; 233 const AtomicString& lookupPrefix(const AtomicString& namespace_uri) const;
234 const AtomicString& lookupNamespaceURI(const String& prefix) const; 234 const AtomicString& lookupNamespaceURI(const String& prefix) const;
235 235
236 String textContent(bool convert_b_rs_to_newlines = false) const; 236 String textContent(bool convert_brs_to_newlines = false) const;
237 void setTextContent(const String&); 237 void setTextContent(const String&);
238 238
239 bool SupportsAltText(); 239 bool SupportsAltText();
240 240
241 // Other methods (not part of DOM) 241 // Other methods (not part of DOM)
242 242
243 bool IsElementNode() const { return GetFlag(kIsElementFlag); } 243 bool IsElementNode() const { return GetFlag(kIsElementFlag); }
244 bool IsContainerNode() const { return GetFlag(kIsContainerFlag); } 244 bool IsContainerNode() const { return GetFlag(kIsContainerFlag); }
245 bool IsTextNode() const { return GetFlag(kIsTextFlag); } 245 bool IsTextNode() const { return GetFlag(kIsTextFlag); }
246 bool IsHTMLElement() const { return GetFlag(kIsHTMLFlag); } 246 bool IsHTMLElement() const { return GetFlag(kIsHTMLFlag); }
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 } // namespace blink 993 } // namespace blink
994 994
995 #ifndef NDEBUG 995 #ifndef NDEBUG
996 // Outside the WebCore namespace for ease of invocation from gdb. 996 // Outside the WebCore namespace for ease of invocation from gdb.
997 void showNode(const blink::Node*); 997 void showNode(const blink::Node*);
998 void showTree(const blink::Node*); 998 void showTree(const blink::Node*);
999 void showNodePath(const blink::Node*); 999 void showNodePath(const blink::Node*);
1000 #endif 1000 #endif
1001 1001
1002 #endif // Node_h 1002 #endif // Node_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698