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

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

Issue 14336010: Absolutify paths to accessibility/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/platform/Scrollbar.cpp ('k') | Source/core/rendering/RenderListBox.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
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details. 16 * Library General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Library General Public License 18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to 19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA. 21 * Boston, MA 02110-1301, USA.
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "RenderBlock.h" 25 #include "RenderBlock.h"
26 26
27 #include "AXObjectCache.h"
28 #include "ColumnInfo.h" 27 #include "ColumnInfo.h"
29 #include "Document.h" 28 #include "Document.h"
30 #include "Editor.h" 29 #include "Editor.h"
31 #include "Element.h" 30 #include "Element.h"
32 #include "FloatQuad.h" 31 #include "FloatQuad.h"
33 #include "Frame.h" 32 #include "Frame.h"
34 #include "FrameSelection.h" 33 #include "FrameSelection.h"
35 #include "FrameView.h" 34 #include "FrameView.h"
36 #include "GraphicsContext.h" 35 #include "GraphicsContext.h"
37 #include "HTMLFormElement.h" 36 #include "HTMLFormElement.h"
(...skipping 15 matching lines...) Expand all
53 #include "RenderInline.h" 52 #include "RenderInline.h"
54 #include "RenderLayer.h" 53 #include "RenderLayer.h"
55 #include "RenderMarquee.h" 54 #include "RenderMarquee.h"
56 #include "RenderNamedFlowThread.h" 55 #include "RenderNamedFlowThread.h"
57 #include "RenderRegion.h" 56 #include "RenderRegion.h"
58 #include "RenderReplica.h" 57 #include "RenderReplica.h"
59 #include "RenderTableCell.h" 58 #include "RenderTableCell.h"
60 #include "RenderTextFragment.h" 59 #include "RenderTextFragment.h"
61 #include "RenderTheme.h" 60 #include "RenderTheme.h"
62 #include "RenderView.h" 61 #include "RenderView.h"
62 #include "SVGTextRunRenderingContext.h"
63 #include "Settings.h" 63 #include "Settings.h"
64 #include "SVGTextRunRenderingContext.h"
65 #include "ShadowRoot.h" 64 #include "ShadowRoot.h"
66 #include "TransformState.h" 65 #include "TransformState.h"
67 #include "WebCoreMemoryInstrumentation.h" 66 #include "WebCoreMemoryInstrumentation.h"
67 #include "core/accessibility/AXObjectCache.h"
68 #include <wtf/StdLibExtras.h> 68 #include <wtf/StdLibExtras.h>
69 #if ENABLE(CSS_EXCLUSIONS) 69 #if ENABLE(CSS_EXCLUSIONS)
70 #include "ExclusionShapeInsideInfo.h" 70 #include "ExclusionShapeInsideInfo.h"
71 #include "ExclusionShapeOutsideInfo.h" 71 #include "ExclusionShapeOutsideInfo.h"
72 #endif 72 #endif
73 #include <wtf/MemoryInstrumentationHashMap.h> 73 #include <wtf/MemoryInstrumentationHashMap.h>
74 #include <wtf/MemoryInstrumentationHashSet.h> 74 #include <wtf/MemoryInstrumentationHashSet.h>
75 #include <wtf/MemoryInstrumentationListHashSet.h> 75 #include <wtf/MemoryInstrumentationListHashSet.h>
76 #include <wtf/TemporaryChange.h> 76 #include <wtf/TemporaryChange.h>
77 77
(...skipping 8036 matching lines...) Expand 10 before | Expand all | Expand 10 after
8114 { 8114 {
8115 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren deringStructures); 8115 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren deringStructures);
8116 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor yTypes::RenderingStructures); 8116 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor yTypes::RenderingStructures);
8117 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe moryTypes::RenderingStructures); 8117 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe moryTypes::RenderingStructures);
8118 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT ypes::RenderingStructures); 8118 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT ypes::RenderingStructures);
8119 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo ryTypes::RenderingStructures); 8119 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo ryTypes::RenderingStructures);
8120 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem oryTypes::RenderingStructures); 8120 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem oryTypes::RenderingStructures);
8121 } 8121 }
8122 8122
8123 } // namespace WebCore 8123 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/platform/Scrollbar.cpp ('k') | Source/core/rendering/RenderListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698