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

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

Issue 2008503003: Eliminate unnecessary includes of LayoutBlockFlow-derived headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: styleRef(bool) needs LayoutObjectInlines.h Created 4 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, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/LayoutInline.h" 50 #include "core/layout/LayoutInline.h"
51 #include "core/layout/LayoutText.h" 51 #include "core/layout/LayoutText.h"
52 #include "core/layout/LayoutTheme.h" 52 #include "core/layout/LayoutTheme.h"
53 #include "core/layout/LayoutView.h"
54 #include "core/layout/line/InlineTextBox.h" 53 #include "core/layout/line/InlineTextBox.h"
55 #include "platform/EventDispatchForbiddenScope.h" 54 #include "platform/EventDispatchForbiddenScope.h"
56 #include "platform/ScriptForbiddenScope.h" 55 #include "platform/ScriptForbiddenScope.h"
57 56
58 namespace blink { 57 namespace blink {
59 58
60 using namespace HTMLNames; 59 using namespace HTMLNames;
61 60
62 static void dispatchChildInsertionEvents(Node&); 61 static void dispatchChildInsertionEvents(Node&);
63 static void dispatchChildRemovalEvents(Node&); 62 static void dispatchChildRemovalEvents(Node&);
(...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 return true; 1384 return true;
1386 1385
1387 if (node->isElementNode() && toElement(node)->shadow()) 1386 if (node->isElementNode() && toElement(node)->shadow())
1388 return true; 1387 return true;
1389 1388
1390 return false; 1389 return false;
1391 } 1390 }
1392 #endif 1391 #endif
1393 1392
1394 } // namespace blink 1393 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp ('k') | third_party/WebKit/Source/core/editing/VisibleUnits.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698