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

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

Issue 14476012: Absolutify paths to most subfolders of platform/graphics/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: iwyu 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/rendering/RenderGeometryMap.cpp ('k') | Source/core/rendering/RenderLayer.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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 18 matching lines...) Expand all
29 #include "InlineTextBox.h" 29 #include "InlineTextBox.h"
30 #include "Page.h" 30 #include "Page.h"
31 #include "RenderArena.h" 31 #include "RenderArena.h"
32 #include "RenderBlock.h" 32 #include "RenderBlock.h"
33 #include "RenderFlowThread.h" 33 #include "RenderFlowThread.h"
34 #include "RenderGeometryMap.h" 34 #include "RenderGeometryMap.h"
35 #include "RenderLayer.h" 35 #include "RenderLayer.h"
36 #include "RenderTheme.h" 36 #include "RenderTheme.h"
37 #include "RenderView.h" 37 #include "RenderView.h"
38 #include "StyleInheritedData.h" 38 #include "StyleInheritedData.h"
39 #include "TransformState.h"
40 #include "VisiblePosition.h" 39 #include "VisiblePosition.h"
41 #include "WebCoreMemoryInstrumentation.h" 40 #include "WebCoreMemoryInstrumentation.h"
42 #include "core/platform/graphics/FloatQuad.h" 41 #include "core/platform/graphics/FloatQuad.h"
43 #include "core/platform/graphics/GraphicsContext.h" 42 #include "core/platform/graphics/GraphicsContext.h"
43 #include "core/platform/graphics/transforms/TransformState.h"
44 44
45 using namespace std; 45 using namespace std;
46 46
47 namespace WebCore { 47 namespace WebCore {
48 48
49 RenderInline::RenderInline(Element* element) 49 RenderInline::RenderInline(Element* element)
50 : RenderBoxModelObject(element) 50 : RenderBoxModelObject(element)
51 , m_alwaysCreateLineBoxes(false) 51 , m_alwaysCreateLineBoxes(false)
52 { 52 {
53 setChildrenInline(true); 53 setChildrenInline(true);
(...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 1579
1580 void RenderInline::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 1580 void RenderInline::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
1581 { 1581 {
1582 MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering) ; 1582 MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering) ;
1583 RenderBoxModelObject::reportMemoryUsage(memoryObjectInfo); 1583 RenderBoxModelObject::reportMemoryUsage(memoryObjectInfo);
1584 info.addMember(m_children, "children"); 1584 info.addMember(m_children, "children");
1585 info.addMember(m_lineBoxes, "lineBoxes"); 1585 info.addMember(m_lineBoxes, "lineBoxes");
1586 } 1586 }
1587 1587
1588 } // namespace WebCore 1588 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderGeometryMap.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698