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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, 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/RenderBlock.cpp ('k') | Source/core/rendering/RenderBox.h » ('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 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 * 20 *
21 */ 21 */
22 22
23 #include "config.h" 23 #include "config.h"
24 24
25 #include "InlineIterator.h" 25 #include "InlineIterator.h"
26 #include "InlineTextBox.h" 26 #include "InlineTextBox.h"
27 #include "Logging.h"
28 #include "RenderArena.h" 27 #include "RenderArena.h"
29 #include "RenderCombineText.h" 28 #include "RenderCombineText.h"
30 #include "RenderCounter.h" 29 #include "RenderCounter.h"
31 #include "RenderFlowThread.h" 30 #include "RenderFlowThread.h"
32 #include "RenderInline.h" 31 #include "RenderInline.h"
33 #include "RenderLayer.h" 32 #include "RenderLayer.h"
34 #include "RenderListMarker.h" 33 #include "RenderListMarker.h"
35 #include "RenderRegion.h" 34 #include "RenderRegion.h"
36 #include "RenderRubyRun.h" 35 #include "RenderRubyRun.h"
37 #include "RenderView.h" 36 #include "RenderView.h"
38 #include "Settings.h" 37 #include "Settings.h"
39 #include "TrailingFloatsRootInlineBox.h" 38 #include "TrailingFloatsRootInlineBox.h"
40 #include "VerticalPositionCache.h" 39 #include "VerticalPositionCache.h"
41 #include "break_lines.h" 40 #include "break_lines.h"
41 #include "core/platform/Logging.h"
42 #include "core/platform/text/BidiResolver.h" 42 #include "core/platform/text/BidiResolver.h"
43 #include "core/platform/text/Hyphenation.h" 43 #include "core/platform/text/Hyphenation.h"
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
(...skipping 3362 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/RenderBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698