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

Side by Side Diff: Source/core/rendering/RenderObject.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/RenderObject.h ('k') | Source/core/rendering/RenderTableCell.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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "RenderRubyText.h" 63 #include "RenderRubyText.h"
64 #include "RenderScrollbarPart.h" 64 #include "RenderScrollbarPart.h"
65 #include "RenderTableCaption.h" 65 #include "RenderTableCaption.h"
66 #include "RenderTableCell.h" 66 #include "RenderTableCell.h"
67 #include "RenderTableCol.h" 67 #include "RenderTableCol.h"
68 #include "RenderTableRow.h" 68 #include "RenderTableRow.h"
69 #include "RenderTheme.h" 69 #include "RenderTheme.h"
70 #include "RenderView.h" 70 #include "RenderView.h"
71 #include "Settings.h" 71 #include "Settings.h"
72 #include "StyleResolver.h" 72 #include "StyleResolver.h"
73 #include "TransformState.h"
74 #include "WebCoreMemoryInstrumentation.h" 73 #include "WebCoreMemoryInstrumentation.h"
75 #include "core/accessibility/AXObjectCache.h" 74 #include "core/accessibility/AXObjectCache.h"
76 #include "core/platform/graphics/DashArray.h" 75 #include "core/platform/graphics/DashArray.h"
77 #include "core/platform/graphics/FloatQuad.h" 76 #include "core/platform/graphics/FloatQuad.h"
78 #include "core/platform/graphics/GraphicsContext.h" 77 #include "core/platform/graphics/GraphicsContext.h"
78 #include "core/platform/graphics/transforms/TransformState.h"
79 #include "htmlediting.h" 79 #include "htmlediting.h"
80 #include <wtf/RefCountedLeakCounter.h> 80 #include <wtf/RefCountedLeakCounter.h>
81 #include <wtf/UnusedParam.h> 81 #include <wtf/UnusedParam.h>
82 82
83 #if ENABLE(SVG) 83 #if ENABLE(SVG)
84 #include "RenderSVGResourceContainer.h" 84 #include "RenderSVGResourceContainer.h"
85 #include "SVGRenderSupport.h" 85 #include "SVGRenderSupport.h"
86 #endif 86 #endif
87 87
88 using namespace std; 88 using namespace std;
(...skipping 3077 matching lines...) Expand 10 before | Expand all | Expand 10 after
3166 { 3166 {
3167 if (object1) { 3167 if (object1) {
3168 const WebCore::RenderObject* root = object1; 3168 const WebCore::RenderObject* root = object1;
3169 while (root->parent()) 3169 while (root->parent())
3170 root = root->parent(); 3170 root = root->parent();
3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); 3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
3172 } 3172 }
3173 } 3173 }
3174 3174
3175 #endif 3175 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.h ('k') | Source/core/rendering/RenderTableCell.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698