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

Side by Side Diff: webkit/pending/Traversal.cpp

Issue 4097: Implement better JS exception handling by abstracting KJS::ExecState into an ... (Closed) Base URL: svn://chrome-svn/chrome/branches/chrome_webkit_merge_branch/
Patch Set: '' Created 12 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « webkit/pending/Traversal.h ('k') | webkit/pending/TreeWalker.h » ('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 * 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
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details. 16 * Library General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Library General Public License 18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to 19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA. 21 * Boston, MA 02110-1301, USA.
22 * 22 *
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 #include "Traversal.h" 26 #include "Traversal.h"
27 27
28 #include "ExceptionContext.h"
28 #include "Node.h" 29 #include "Node.h"
29 #include "NodeFilter.h" 30 #include "NodeFilter.h"
30 31
31 #if USE(JSC)
32 using namespace KJS;
33 #endif
34
35 namespace WebCore { 32 namespace WebCore {
36 33
37 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr< NodeFilter> nodeFilter, bool expandEntityReferences) 34 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr< NodeFilter> nodeFilter, bool expandEntityReferences)
38 : m_root(rootNode) 35 : m_root(rootNode)
39 , m_whatToShow(whatToShow) 36 , m_whatToShow(whatToShow)
40 , m_filter(nodeFilter) 37 , m_filter(nodeFilter)
41 , m_expandEntityReferences(expandEntityReferences) 38 , m_expandEntityReferences(expandEntityReferences)
42 { 39 {
43 } 40 }
44 41
45 #if USE(JSC) 42 short Traversal::acceptNode(ExceptionContext* exec, Node* node) const
46 short Traversal::acceptNode(ExecState* exec, Node* node) const
47 { 43 {
48 // FIXME: To handle XML properly we would have to check m_expandEntityRefere nces. 44 // FIXME: To handle XML properly we would have to check m_expandEntityRefere nces.
49 45
50 // The bit twiddling here is done to map DOM node types, which are given as integers from 46 // The bit twiddling here is done to map DOM node types, which are given as integers from
51 // 1 through 12, to whatToShow bit masks. 47 // 1 through 12, to whatToShow bit masks.
52 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow))) 48 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow)))
53 return NodeFilter::FILTER_SKIP; 49 return NodeFilter::FILTER_SKIP;
54 if (!m_filter) 50 if (!m_filter)
55 return NodeFilter::FILTER_ACCEPT; 51 return NodeFilter::FILTER_ACCEPT;
56 return m_filter->acceptNode(exec, node); 52 return m_filter->acceptNode(exec, node);
57 } 53 }
58 #endif
59 54
60 } // namespace WebCore 55 } // namespace WebCore
OLDNEW
« no previous file with comments | « webkit/pending/Traversal.h ('k') | webkit/pending/TreeWalker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698