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

Side by Side Diff: Source/core/rendering/RenderBlock.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 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
« no previous file with comments | « Source/core/rendering/RenderBR.cpp ('k') | Source/core/rendering/RenderBlockLineLayout.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) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 15 matching lines...) Expand all
26 26
27 #include "HTMLNames.h" 27 #include "HTMLNames.h"
28 #include "core/accessibility/AXObjectCache.h" 28 #include "core/accessibility/AXObjectCache.h"
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 #include "core/dom/Element.h" 30 #include "core/dom/Element.h"
31 #include "core/dom/OverflowEvent.h" 31 #include "core/dom/OverflowEvent.h"
32 #include "core/dom/WebCoreMemoryInstrumentation.h" 32 #include "core/dom/WebCoreMemoryInstrumentation.h"
33 #include "core/dom/shadow/ShadowRoot.h" 33 #include "core/dom/shadow/ShadowRoot.h"
34 #include "core/editing/Editor.h" 34 #include "core/editing/Editor.h"
35 #include "core/editing/FrameSelection.h" 35 #include "core/editing/FrameSelection.h"
36 #include "core/html/HTMLFormElement.h"
37 #include "core/page/Frame.h" 36 #include "core/page/Frame.h"
38 #include "core/page/FrameView.h" 37 #include "core/page/FrameView.h"
39 #include "core/page/Page.h" 38 #include "core/page/Page.h"
40 #include "core/page/Settings.h" 39 #include "core/page/Settings.h"
41 #include "core/platform/PODFreeListArena.h"
42 #include "core/platform/graphics/FloatQuad.h" 40 #include "core/platform/graphics/FloatQuad.h"
43 #include "core/platform/graphics/GraphicsContextStateSaver.h" 41 #include "core/platform/graphics/GraphicsContextStateSaver.h"
44 #include "core/platform/graphics/transforms/TransformState.h" 42 #include "core/platform/graphics/transforms/TransformState.h"
45 #include "core/rendering/ColumnInfo.h" 43 #include "core/rendering/ColumnInfo.h"
46 #include "core/rendering/exclusions/ExclusionShapeInsideInfo.h" 44 #include "core/rendering/exclusions/ExclusionShapeInsideInfo.h"
47 #include "core/rendering/exclusions/ExclusionShapeOutsideInfo.h" 45 #include "core/rendering/exclusions/ExclusionShapeOutsideInfo.h"
48 #include "core/rendering/HitTestLocation.h" 46 #include "core/rendering/HitTestLocation.h"
49 #include "core/rendering/HitTestResult.h" 47 #include "core/rendering/HitTestResult.h"
50 #include "core/rendering/InlineIterator.h" 48 #include "core/rendering/InlineIterator.h"
51 #include "core/rendering/InlineTextBox.h" 49 #include "core/rendering/InlineTextBox.h"
52 #include "core/rendering/LayoutRepainter.h" 50 #include "core/rendering/LayoutRepainter.h"
53 #include "core/rendering/PaintInfo.h" 51 #include "core/rendering/PaintInfo.h"
54 #include "core/rendering/RenderBoxRegionInfo.h"
55 #include "core/rendering/RenderCombineText.h" 52 #include "core/rendering/RenderCombineText.h"
56 #include "core/rendering/RenderDeprecatedFlexibleBox.h" 53 #include "core/rendering/RenderDeprecatedFlexibleBox.h"
57 #include "core/rendering/RenderFlexibleBox.h" 54 #include "core/rendering/RenderFlexibleBox.h"
58 #include "core/rendering/RenderImage.h"
59 #include "core/rendering/RenderInline.h" 55 #include "core/rendering/RenderInline.h"
60 #include "core/rendering/RenderLayer.h" 56 #include "core/rendering/RenderLayer.h"
61 #include "core/rendering/RenderMarquee.h" 57 #include "core/rendering/RenderMarquee.h"
62 #include "core/rendering/RenderNamedFlowThread.h" 58 #include "core/rendering/RenderNamedFlowThread.h"
63 #include "core/rendering/RenderRegion.h" 59 #include "core/rendering/RenderRegion.h"
64 #include "core/rendering/RenderReplica.h"
65 #include "core/rendering/RenderTableCell.h" 60 #include "core/rendering/RenderTableCell.h"
66 #include "core/rendering/RenderTextFragment.h" 61 #include "core/rendering/RenderTextFragment.h"
67 #include "core/rendering/RenderTheme.h" 62 #include "core/rendering/RenderTheme.h"
68 #include "core/rendering/RenderView.h" 63 #include "core/rendering/RenderView.h"
69 #include "core/rendering/svg/SVGTextRunRenderingContext.h" 64 #include "core/rendering/svg/SVGTextRunRenderingContext.h"
70 #include <wtf/StdLibExtras.h> 65 #include <wtf/StdLibExtras.h>
71 #include <wtf/MemoryInstrumentationHashMap.h> 66 #include <wtf/MemoryInstrumentationHashMap.h>
72 #include <wtf/MemoryInstrumentationHashSet.h> 67 #include <wtf/MemoryInstrumentationHashSet.h>
73 #include <wtf/MemoryInstrumentationListHashSet.h> 68 #include <wtf/MemoryInstrumentationListHashSet.h>
74 #include <wtf/TemporaryChange.h> 69 #include <wtf/TemporaryChange.h>
(...skipping 8061 matching lines...) Expand 10 before | Expand all | Expand 10 after
8136 { 8131 {
8137 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren deringStructures); 8132 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren deringStructures);
8138 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor yTypes::RenderingStructures); 8133 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor yTypes::RenderingStructures);
8139 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe moryTypes::RenderingStructures); 8134 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe moryTypes::RenderingStructures);
8140 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT ypes::RenderingStructures); 8135 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT ypes::RenderingStructures);
8141 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo ryTypes::RenderingStructures); 8136 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo ryTypes::RenderingStructures);
8142 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem oryTypes::RenderingStructures); 8137 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem oryTypes::RenderingStructures);
8143 } 8138 }
8144 8139
8145 } // namespace WebCore 8140 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBR.cpp ('k') | Source/core/rendering/RenderBlockLineLayout.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698