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

Side by Side Diff: third_party/WebKit/Source/core/dom/TreeWalker.cpp

Issue 1854423002: ASSERT -> {DCHECK|DCHECK_XX}, ENABLE(ASSERT) -> DCHECK_IS_ON() in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark svg/as-image/svg-nested.html crash on win Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no) 3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no)
4 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 4 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
6 * Copyright (C) 2004, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2008 Apple Inc. All rights reserved.
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 22 matching lines...) Expand all
33 namespace blink { 33 namespace blink {
34 34
35 TreeWalker::TreeWalker(RawPtr<Node> rootNode, unsigned whatToShow, RawPtr<NodeFi lter> filter) 35 TreeWalker::TreeWalker(RawPtr<Node> rootNode, unsigned whatToShow, RawPtr<NodeFi lter> filter)
36 : NodeIteratorBase(rootNode, whatToShow, filter) 36 : NodeIteratorBase(rootNode, whatToShow, filter)
37 , m_current(root()) 37 , m_current(root())
38 { 38 {
39 } 39 }
40 40
41 void TreeWalker::setCurrentNode(RawPtr<Node> node) 41 void TreeWalker::setCurrentNode(RawPtr<Node> node)
42 { 42 {
43 ASSERT(node); 43 DCHECK(node);
44 m_current = node; 44 m_current = node;
45 } 45 }
46 46
47 inline Node* TreeWalker::setCurrent(RawPtr<Node> node) 47 inline Node* TreeWalker::setCurrent(RawPtr<Node> node)
48 { 48 {
49 m_current = node; 49 m_current = node;
50 return m_current.get(); 50 return m_current.get();
51 } 51 }
52 52
53 Node* TreeWalker::parentNode(ExceptionState& exceptionState) 53 Node* TreeWalker::parentNode(ExceptionState& exceptionState)
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 return 0; 272 return 0;
273 } 273 }
274 274
275 DEFINE_TRACE(TreeWalker) 275 DEFINE_TRACE(TreeWalker)
276 { 276 {
277 visitor->trace(m_current); 277 visitor->trace(m_current);
278 NodeIteratorBase::trace(visitor); 278 NodeIteratorBase::trace(visitor);
279 } 279 }
280 280
281 } // namespace blink 281 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/TreeShared.h ('k') | third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698