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

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

Issue 1746673002: Node.h #include parsimony. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unrelated change Created 4 years, 9 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 r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "core/events/TouchEvent.h" 75 #include "core/events/TouchEvent.h"
76 #include "core/events/UIEvent.h" 76 #include "core/events/UIEvent.h"
77 #include "core/events/WheelEvent.h" 77 #include "core/events/WheelEvent.h"
78 #include "core/frame/EventHandlerRegistry.h" 78 #include "core/frame/EventHandlerRegistry.h"
79 #include "core/frame/LocalDOMWindow.h" 79 #include "core/frame/LocalDOMWindow.h"
80 #include "core/frame/LocalFrame.h" 80 #include "core/frame/LocalFrame.h"
81 #include "core/html/HTMLDialogElement.h" 81 #include "core/html/HTMLDialogElement.h"
82 #include "core/html/HTMLFrameOwnerElement.h" 82 #include "core/html/HTMLFrameOwnerElement.h"
83 #include "core/html/HTMLSlotElement.h" 83 #include "core/html/HTMLSlotElement.h"
84 #include "core/input/EventHandler.h" 84 #include "core/input/EventHandler.h"
85 #include "core/inspector/InstanceCounters.h"
85 #include "core/layout/LayoutBox.h" 86 #include "core/layout/LayoutBox.h"
86 #include "core/page/ContextMenuController.h" 87 #include "core/page/ContextMenuController.h"
87 #include "core/page/Page.h" 88 #include "core/page/Page.h"
88 #include "core/svg/graphics/SVGImage.h" 89 #include "core/svg/graphics/SVGImage.h"
89 #include "platform/EventDispatchForbiddenScope.h" 90 #include "platform/EventDispatchForbiddenScope.h"
90 #include "platform/RuntimeEnabledFeatures.h" 91 #include "platform/RuntimeEnabledFeatures.h"
91 #include "platform/TraceEvent.h" 92 #include "platform/TraceEvent.h"
92 #include "platform/TracedValue.h" 93 #include "platform/TracedValue.h"
93 #include "wtf/HashSet.h" 94 #include "wtf/HashSet.h"
94 #include "wtf/Partitions.h" 95 #include "wtf/Partitions.h"
(...skipping 2349 matching lines...) Expand 10 before | Expand all | Expand 10 after
2444 2445
2445 void showNodePath(const blink::Node* node) 2446 void showNodePath(const blink::Node* node)
2446 { 2447 {
2447 if (node) 2448 if (node)
2448 node->showNodePathForThis(); 2449 node->showNodePathForThis();
2449 else 2450 else
2450 fprintf(stderr, "Cannot showNodePath for (nil)\n"); 2451 fprintf(stderr, "Cannot showNodePath for (nil)\n");
2451 } 2452 }
2452 2453
2453 #endif 2454 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698