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

Side by Side Diff: Source/core/rendering/RenderTableCell.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 14 matching lines...) Expand all
25 #include "config.h" 25 #include "config.h"
26 #include "RenderTableCell.h" 26 #include "RenderTableCell.h"
27 27
28 #include "CollapsedBorderValue.h" 28 #include "CollapsedBorderValue.h"
29 #include "HTMLNames.h" 29 #include "HTMLNames.h"
30 #include "HTMLTableCellElement.h" 30 #include "HTMLTableCellElement.h"
31 #include "PaintInfo.h" 31 #include "PaintInfo.h"
32 #include "RenderTableCol.h" 32 #include "RenderTableCol.h"
33 #include "RenderView.h" 33 #include "RenderView.h"
34 #include "StylePropertySet.h" 34 #include "StylePropertySet.h"
35 #include "TransformState.h"
36 #include "core/platform/graphics/FloatQuad.h" 35 #include "core/platform/graphics/FloatQuad.h"
37 #include "core/platform/graphics/GraphicsContext.h" 36 #include "core/platform/graphics/GraphicsContext.h"
37 #include "core/platform/graphics/transforms/TransformState.h"
38 38
39 #if ENABLE(MATHML) 39 #if ENABLE(MATHML)
40 #include "MathMLNames.h" 40 #include "MathMLNames.h"
41 #include "core/mathml/MathMLElement.h" 41 #include "core/mathml/MathMLElement.h"
42 #endif 42 #endif
43 43
44 using namespace std; 44 using namespace std;
45 45
46 namespace WebCore { 46 namespace WebCore {
47 47
(...skipping 1221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 1269
1270 RenderTableCell* RenderTableCell::createAnonymousWithParentRenderer(const Render Object* parent) 1270 RenderTableCell* RenderTableCell::createAnonymousWithParentRenderer(const Render Object* parent)
1271 { 1271 {
1272 RenderTableCell* newCell = RenderTableCell::createAnonymous(parent->document ()); 1272 RenderTableCell* newCell = RenderTableCell::createAnonymous(parent->document ());
1273 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_CELL); 1273 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_CELL);
1274 newCell->setStyle(newStyle.release()); 1274 newCell->setStyle(newStyle.release());
1275 return newCell; 1275 return newCell;
1276 } 1276 }
1277 1277
1278 } // namespace WebCore 1278 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/RenderThemeChromiumSkia.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698