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

Side by Side Diff: Source/core/dom/ContainerNode.cpp

Issue 358603002: Remove StyleEngine.h include from RenderObject.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-style-bool-to-0
Patch Set: Rebased for landing Created 6 years, 5 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
« no previous file with comments | « Source/core/css/SelectorChecker.cpp ('k') | Source/core/dom/Element.cpp » ('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 * (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 22 matching lines...) Expand all
33 #include "core/dom/FullscreenElementStack.h" 33 #include "core/dom/FullscreenElementStack.h"
34 #include "core/dom/NameNodeList.h" 34 #include "core/dom/NameNodeList.h"
35 #include "core/dom/NoEventDispatchAssertion.h" 35 #include "core/dom/NoEventDispatchAssertion.h"
36 #include "core/dom/NodeChildRemovalTracker.h" 36 #include "core/dom/NodeChildRemovalTracker.h"
37 #include "core/dom/NodeRareData.h" 37 #include "core/dom/NodeRareData.h"
38 #include "core/dom/NodeRenderStyle.h" 38 #include "core/dom/NodeRenderStyle.h"
39 #include "core/dom/NodeTraversal.h" 39 #include "core/dom/NodeTraversal.h"
40 #include "core/dom/ScriptForbiddenScope.h" 40 #include "core/dom/ScriptForbiddenScope.h"
41 #include "core/dom/SelectorQuery.h" 41 #include "core/dom/SelectorQuery.h"
42 #include "core/dom/StaticNodeList.h" 42 #include "core/dom/StaticNodeList.h"
43 #include "core/dom/StyleEngine.h"
43 #include "core/dom/shadow/ElementShadow.h" 44 #include "core/dom/shadow/ElementShadow.h"
44 #include "core/dom/shadow/ShadowRoot.h" 45 #include "core/dom/shadow/ShadowRoot.h"
45 #include "core/events/MutationEvent.h" 46 #include "core/events/MutationEvent.h"
46 #include "core/html/HTMLCollection.h" 47 #include "core/html/HTMLCollection.h"
47 #include "core/html/HTMLFrameOwnerElement.h" 48 #include "core/html/HTMLFrameOwnerElement.h"
48 #include "core/html/HTMLTagCollection.h" 49 #include "core/html/HTMLTagCollection.h"
49 #include "core/html/RadioNodeList.h" 50 #include "core/html/RadioNodeList.h"
50 #include "core/inspector/InspectorInstrumentation.h" 51 #include "core/inspector/InspectorInstrumentation.h"
51 #include "core/rendering/InlineTextBox.h" 52 #include "core/rendering/InlineTextBox.h"
52 #include "core/rendering/RenderText.h" 53 #include "core/rendering/RenderText.h"
(...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 return true; 1294 return true;
1294 1295
1295 if (node->isElementNode() && toElement(node)->shadow()) 1296 if (node->isElementNode() && toElement(node)->shadow())
1296 return true; 1297 return true;
1297 1298
1298 return false; 1299 return false;
1299 } 1300 }
1300 #endif 1301 #endif
1301 1302
1302 } // namespace WebCore 1303 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/SelectorChecker.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698