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

Side by Side Diff: Source/core/rendering/RenderBlockLineLayout.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
« no previous file with comments | « Source/core/rendering/RenderBlock.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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ight reserved. 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ight reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include <wtf/RefCountedLeakCounter.h> 44 #include <wtf/RefCountedLeakCounter.h>
45 #include <wtf/StdLibExtras.h> 45 #include <wtf/StdLibExtras.h>
46 #include <wtf/unicode/CharacterNames.h> 46 #include <wtf/unicode/CharacterNames.h>
47 #include <wtf/Vector.h> 47 #include <wtf/Vector.h>
48 48
49 #if ENABLE(CSS_EXCLUSIONS) 49 #if ENABLE(CSS_EXCLUSIONS)
50 #include "ExclusionShapeInsideInfo.h" 50 #include "ExclusionShapeInsideInfo.h"
51 #endif 51 #endif
52 52
53 #if ENABLE(SVG) 53 #if ENABLE(SVG)
54 #include "RenderSVGInlineText.h" 54 #include "core/rendering/svg/RenderSVGInlineText.h"
55 #include "SVGRootInlineBox.h" 55 #include "core/rendering/svg/SVGRootInlineBox.h"
56 #endif 56 #endif
57 57
58 using namespace std; 58 using namespace std;
59 using namespace WTF; 59 using namespace WTF;
60 using namespace Unicode; 60 using namespace Unicode;
61 61
62 namespace WebCore { 62 namespace WebCore {
63 63
64 // We don't let our line box tree for a single line get any deeper than this. 64 // We don't let our line box tree for a single line get any deeper than this.
65 const unsigned cMaxLineDepth = 200; 65 const unsigned cMaxLineDepth = 200;
(...skipping 3348 matching lines...) Expand 10 before | Expand all | Expand 10 after
3414 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache); 3414 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver ticalPositionCache);
3415 3415
3416 setLineGridBox(lineGridBox); 3416 setLineGridBox(lineGridBox);
3417 3417
3418 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying 3418 // FIXME: If any of the characteristics of the box change compared to the ol d one, then we need to do a deep dirtying
3419 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping 3419 // (similar to what happens when the page height changes). Ideally, though, we only do this if someone is actually snapping
3420 // to this grid. 3420 // to this grid.
3421 } 3421 }
3422 3422
3423 } 3423 }
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698