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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 12 matching lines...) Expand all
23 */ 23 */
24 24
25 #include "core/dom/NodeIteratorBase.h" 25 #include "core/dom/NodeIteratorBase.h"
26 26
27 #include "bindings/core/v8/ExceptionState.h" 27 #include "bindings/core/v8/ExceptionState.h"
28 #include "core/dom/Node.h" 28 #include "core/dom/Node.h"
29 #include "core/dom/NodeFilter.h" 29 #include "core/dom/NodeFilter.h"
30 30
31 namespace blink { 31 namespace blink {
32 32
33 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(NodeIteratorBase); 33 NodeIteratorBase::NodeIteratorBase(RawPtr<Node> rootNode, unsigned whatToShow, R awPtr<NodeFilter> nodeFilter)
34
35 NodeIteratorBase::NodeIteratorBase(PassRefPtrWillBeRawPtr<Node> rootNode, unsign ed whatToShow, PassRefPtrWillBeRawPtr<NodeFilter> nodeFilter)
36 : m_root(rootNode) 34 : m_root(rootNode)
37 , m_whatToShow(whatToShow) 35 , m_whatToShow(whatToShow)
38 , m_filter(nodeFilter) 36 , m_filter(nodeFilter)
39 { 37 {
40 } 38 }
41 39
42 unsigned NodeIteratorBase::acceptNode(Node* node, ExceptionState& exceptionState ) const 40 unsigned NodeIteratorBase::acceptNode(Node* node, ExceptionState& exceptionState ) const
43 { 41 {
44 // The bit twiddling here is done to map DOM node types, which are given as integers from 42 // The bit twiddling here is done to map DOM node types, which are given as integers from
45 // 1 through 14, to whatToShow bit masks. 43 // 1 through 14, to whatToShow bit masks.
46 if (!(((1 << (node->getNodeType() - 1)) & m_whatToShow))) 44 if (!(((1 << (node->getNodeType() - 1)) & m_whatToShow)))
47 return NodeFilter::FILTER_SKIP; 45 return NodeFilter::FILTER_SKIP;
48 if (!m_filter) 46 if (!m_filter)
49 return NodeFilter::FILTER_ACCEPT; 47 return NodeFilter::FILTER_ACCEPT;
50 return m_filter->acceptNode(node, exceptionState); 48 return m_filter->acceptNode(node, exceptionState);
51 } 49 }
52 50
53 DEFINE_TRACE(NodeIteratorBase) 51 DEFINE_TRACE(NodeIteratorBase)
54 { 52 {
55 visitor->trace(m_root); 53 visitor->trace(m_root);
56 visitor->trace(m_filter); 54 visitor->trace(m_filter);
57 } 55 }
58 56
59 } // namespace blink 57 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/NodeIteratorBase.h ('k') | third_party/WebKit/Source/core/dom/NodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698