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

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

Issue 14487005: Absolutify paths to rendering/svg/. (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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "RenderInline.h" 49 #include "RenderInline.h"
50 #include "RenderLayer.h" 50 #include "RenderLayer.h"
51 #include "RenderMarquee.h" 51 #include "RenderMarquee.h"
52 #include "RenderNamedFlowThread.h" 52 #include "RenderNamedFlowThread.h"
53 #include "RenderRegion.h" 53 #include "RenderRegion.h"
54 #include "RenderReplica.h" 54 #include "RenderReplica.h"
55 #include "RenderTableCell.h" 55 #include "RenderTableCell.h"
56 #include "RenderTextFragment.h" 56 #include "RenderTextFragment.h"
57 #include "RenderTheme.h" 57 #include "RenderTheme.h"
58 #include "RenderView.h" 58 #include "RenderView.h"
59 #include "SVGTextRunRenderingContext.h"
60 #include "Settings.h" 59 #include "Settings.h"
61 #include "ShadowRoot.h" 60 #include "ShadowRoot.h"
62 #include "WebCoreMemoryInstrumentation.h" 61 #include "WebCoreMemoryInstrumentation.h"
63 #include "core/accessibility/AXObjectCache.h" 62 #include "core/accessibility/AXObjectCache.h"
64 #include "core/platform/PODFreeListArena.h" 63 #include "core/platform/PODFreeListArena.h"
65 #include "core/platform/graphics/FloatQuad.h" 64 #include "core/platform/graphics/FloatQuad.h"
66 #include "core/platform/graphics/GraphicsContext.h" 65 #include "core/platform/graphics/GraphicsContext.h"
67 #include "core/platform/graphics/transforms/TransformState.h" 66 #include "core/platform/graphics/transforms/TransformState.h"
67 #include "core/rendering/svg/SVGTextRunRenderingContext.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/rendering/InlineTextBox.cpp ('k') | Source/core/rendering/RenderBlockLineLayout.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698