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

Side by Side Diff: third_party/WebKit/Source/core/dom/ContainerNode.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, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 18 matching lines...) Expand all
29 #include "core/dom/ElementTraversal.h" 29 #include "core/dom/ElementTraversal.h"
30 #include "core/dom/ExceptionCode.h" 30 #include "core/dom/ExceptionCode.h"
31 #include "core/dom/NameNodeList.h" 31 #include "core/dom/NameNodeList.h"
32 #include "core/dom/NodeChildRemovalTracker.h" 32 #include "core/dom/NodeChildRemovalTracker.h"
33 #include "core/dom/NodeComputedStyle.h" 33 #include "core/dom/NodeComputedStyle.h"
34 #include "core/dom/NodeRareData.h" 34 #include "core/dom/NodeRareData.h"
35 #include "core/dom/NodeTraversal.h" 35 #include "core/dom/NodeTraversal.h"
36 #include "core/dom/NthIndexCache.h" 36 #include "core/dom/NthIndexCache.h"
37 #include "core/dom/SelectorQuery.h" 37 #include "core/dom/SelectorQuery.h"
38 #include "core/dom/StaticNodeList.h" 38 #include "core/dom/StaticNodeList.h"
39 #include "core/dom/StyleChangeReason.h"
39 #include "core/dom/StyleEngine.h" 40 #include "core/dom/StyleEngine.h"
40 #include "core/dom/shadow/ElementShadow.h" 41 #include "core/dom/shadow/ElementShadow.h"
41 #include "core/dom/shadow/ShadowRoot.h" 42 #include "core/dom/shadow/ShadowRoot.h"
42 #include "core/events/MutationEvent.h" 43 #include "core/events/MutationEvent.h"
43 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
44 #include "core/html/HTMLCollection.h" 45 #include "core/html/HTMLCollection.h"
45 #include "core/html/HTMLFrameOwnerElement.h" 46 #include "core/html/HTMLFrameOwnerElement.h"
46 #include "core/html/HTMLTagCollection.h" 47 #include "core/html/HTMLTagCollection.h"
47 #include "core/html/RadioNodeList.h" 48 #include "core/html/RadioNodeList.h"
48 #include "core/inspector/InspectorInstrumentation.h" 49 #include "core/inspector/InspectorInstrumentation.h"
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
1508 return true; 1509 return true;
1509 1510
1510 if (node->isElementNode() && toElement(node)->shadow()) 1511 if (node->isElementNode() && toElement(node)->shadow())
1511 return true; 1512 return true;
1512 1513
1513 return false; 1514 return false;
1514 } 1515 }
1515 #endif 1516 #endif
1516 1517
1517 } // namespace blink 1518 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698