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

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

Issue 2348853003: Don't include LayoutViewItem.h from StyleResolverState.h (Closed)
Patch Set: Created 4 years, 3 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 29 matching lines...) Expand all
40 #include "core/dom/StyleEngine.h" 40 #include "core/dom/StyleEngine.h"
41 #include "core/dom/shadow/ElementShadow.h" 41 #include "core/dom/shadow/ElementShadow.h"
42 #include "core/dom/shadow/ShadowRoot.h" 42 #include "core/dom/shadow/ShadowRoot.h"
43 #include "core/events/MutationEvent.h" 43 #include "core/events/MutationEvent.h"
44 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
45 #include "core/html/HTMLCollection.h" 45 #include "core/html/HTMLCollection.h"
46 #include "core/html/HTMLFrameOwnerElement.h" 46 #include "core/html/HTMLFrameOwnerElement.h"
47 #include "core/html/HTMLTagCollection.h" 47 #include "core/html/HTMLTagCollection.h"
48 #include "core/html/RadioNodeList.h" 48 #include "core/html/RadioNodeList.h"
49 #include "core/inspector/InspectorInstrumentation.h" 49 #include "core/inspector/InspectorInstrumentation.h"
50 #include "core/layout/LayoutBlockFlow.h"
50 #include "core/layout/LayoutInline.h" 51 #include "core/layout/LayoutInline.h"
51 #include "core/layout/LayoutText.h" 52 #include "core/layout/LayoutText.h"
52 #include "core/layout/LayoutTheme.h" 53 #include "core/layout/LayoutTheme.h"
53 #include "core/layout/line/InlineTextBox.h" 54 #include "core/layout/line/InlineTextBox.h"
55 #include "core/layout/line/RootInlineBox.h"
54 #include "platform/EventDispatchForbiddenScope.h" 56 #include "platform/EventDispatchForbiddenScope.h"
55 #include "platform/ScriptForbiddenScope.h" 57 #include "platform/ScriptForbiddenScope.h"
56 58
57 namespace blink { 59 namespace blink {
58 60
59 using namespace HTMLNames; 61 using namespace HTMLNames;
60 62
61 static void dispatchChildInsertionEvents(Node&); 63 static void dispatchChildInsertionEvents(Node&);
62 static void dispatchChildRemovalEvents(Node&); 64 static void dispatchChildRemovalEvents(Node&);
63 65
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 return true; 1354 return true;
1353 1355
1354 if (node->isElementNode() && toElement(node)->shadow()) 1356 if (node->isElementNode() && toElement(node)->shadow())
1355 return true; 1357 return true;
1356 1358
1357 return false; 1359 return false;
1358 } 1360 }
1359 #endif 1361 #endif
1360 1362
1361 } // namespace blink 1363 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698