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

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

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 years, 7 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, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * 10 *
11 * This library is free software; you can redistribute it and/or 11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Library General Public 12 * modify it under the terms of the GNU Library General Public
13 * License as published by the Free Software Foundation; either 13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version. 14 * version 2 of the License, or (at your option) any later version.
15 * 15 *
16 * This library is distributed in the hope that it will be useful, 16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Library General Public License for more details. 19 * Library General Public License for more details.
20 * 20 *
21 * You should have received a copy of the GNU Library General Public License 21 * You should have received a copy of the GNU Library General Public License
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 */ 25 */
26 26
27 #include "core/dom/Node.h" 27 #include "core/dom/Node.h"
28 28
29 #include "bindings/core/v8/DOMDataStore.h"
30 #include "bindings/core/v8/ExceptionState.h" 29 #include "bindings/core/v8/ExceptionState.h"
31 #include "bindings/core/v8/Microtask.h"
32 #include "bindings/core/v8/NodeOrString.h" 30 #include "bindings/core/v8/NodeOrString.h"
33 #include "bindings/core/v8/ScriptWrappableVisitor.h" 31 #include "bindings/core/v8/ScriptWrappableVisitor.h"
34 #include "bindings/core/v8/V8DOMWrapper.h" 32 #include "bindings/core/v8/V8DOMWrapper.h"
35 #include "core/HTMLNames.h" 33 #include "core/HTMLNames.h"
36 #include "core/MathMLNames.h" 34 #include "core/MathMLNames.h"
37 #include "core/css/CSSSelector.h" 35 #include "core/css/CSSSelector.h"
38 #include "core/css/resolver/StyleResolver.h" 36 #include "core/css/resolver/StyleResolver.h"
39 #include "core/dom/AXObjectCache.h" 37 #include "core/dom/AXObjectCache.h"
40 #include "core/dom/Attr.h" 38 #include "core/dom/Attr.h"
41 #include "core/dom/Attribute.h" 39 #include "core/dom/Attribute.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 #include "core/html/HTMLSlotElement.h" 92 #include "core/html/HTMLSlotElement.h"
95 #include "core/input/EventHandler.h" 93 #include "core/input/EventHandler.h"
96 #include "core/layout/LayoutBox.h" 94 #include "core/layout/LayoutBox.h"
97 #include "core/page/ContextMenuController.h" 95 #include "core/page/ContextMenuController.h"
98 #include "core/page/Page.h" 96 #include "core/page/Page.h"
99 #include "core/svg/SVGElement.h" 97 #include "core/svg/SVGElement.h"
100 #include "core/svg/graphics/SVGImage.h" 98 #include "core/svg/graphics/SVGImage.h"
101 #include "platform/EventDispatchForbiddenScope.h" 99 #include "platform/EventDispatchForbiddenScope.h"
102 #include "platform/InstanceCounters.h" 100 #include "platform/InstanceCounters.h"
103 #include "platform/RuntimeEnabledFeatures.h" 101 #include "platform/RuntimeEnabledFeatures.h"
102 #include "platform/bindings/DOMDataStore.h"
103 #include "platform/bindings/Microtask.h"
104 #include "platform/instrumentation/tracing/TraceEvent.h" 104 #include "platform/instrumentation/tracing/TraceEvent.h"
105 #include "platform/instrumentation/tracing/TracedValue.h" 105 #include "platform/instrumentation/tracing/TracedValue.h"
106 #include "platform/wtf/HashSet.h" 106 #include "platform/wtf/HashSet.h"
107 #include "platform/wtf/Vector.h" 107 #include "platform/wtf/Vector.h"
108 #include "platform/wtf/allocator/Partitions.h" 108 #include "platform/wtf/allocator/Partitions.h"
109 #include "platform/wtf/text/CString.h" 109 #include "platform/wtf/text/CString.h"
110 #include "platform/wtf/text/StringBuilder.h" 110 #include "platform/wtf/text/StringBuilder.h"
111 111
112 namespace blink { 112 namespace blink {
113 113
(...skipping 2479 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 if (node) { 2593 if (node) {
2594 std::stringstream stream; 2594 std::stringstream stream;
2595 node->PrintNodePathTo(stream); 2595 node->PrintNodePathTo(stream);
2596 LOG(INFO) << stream.str(); 2596 LOG(INFO) << stream.str();
2597 } else { 2597 } else {
2598 LOG(INFO) << "Cannot showNodePath for <null>"; 2598 LOG(INFO) << "Cannot showNodePath for <null>";
2599 } 2599 }
2600 } 2600 }
2601 2601
2602 #endif 2602 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/MutationObserver.cpp ('k') | third_party/WebKit/Source/core/dom/Text.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698