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

Side by Side Diff: sky/engine/core/rendering/RenderBlockLineLayout.cpp

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/rendering/RenderBlockFlow.cpp ('k') | sky/engine/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 "sky/engine/config.h"
24 24
25 #include "core/rendering/BidiRunForLine.h" 25 #include "sky/engine/core/rendering/BidiRunForLine.h"
26 #include "core/rendering/RenderLayer.h" 26 #include "sky/engine/core/rendering/RenderLayer.h"
27 #include "core/rendering/RenderObjectInlines.h" 27 #include "sky/engine/core/rendering/RenderObjectInlines.h"
28 #include "core/rendering/RenderView.h" 28 #include "sky/engine/core/rendering/RenderView.h"
29 #include "core/rendering/TextRunConstructor.h" 29 #include "sky/engine/core/rendering/TextRunConstructor.h"
30 #include "core/rendering/TrailingFloatsRootInlineBox.h" 30 #include "sky/engine/core/rendering/TrailingFloatsRootInlineBox.h"
31 #include "core/rendering/VerticalPositionCache.h" 31 #include "sky/engine/core/rendering/VerticalPositionCache.h"
32 #include "core/rendering/line/BreakingContextInlineHeaders.h" 32 #include "sky/engine/core/rendering/line/BreakingContextInlineHeaders.h"
33 #include "core/rendering/line/LineLayoutState.h" 33 #include "sky/engine/core/rendering/line/LineLayoutState.h"
34 #include "core/rendering/line/LineWidth.h" 34 #include "sky/engine/core/rendering/line/LineWidth.h"
35 #include "core/rendering/line/RenderTextInfo.h" 35 #include "sky/engine/core/rendering/line/RenderTextInfo.h"
36 #include "core/rendering/line/WordMeasurement.h" 36 #include "sky/engine/core/rendering/line/WordMeasurement.h"
37 #include "platform/fonts/Character.h" 37 #include "sky/engine/platform/fonts/Character.h"
38 #include "platform/text/BidiResolver.h" 38 #include "sky/engine/platform/text/BidiResolver.h"
39 #include "wtf/RefCountedLeakCounter.h" 39 #include "sky/engine/wtf/RefCountedLeakCounter.h"
40 #include "wtf/StdLibExtras.h" 40 #include "sky/engine/wtf/StdLibExtras.h"
41 #include "wtf/Vector.h" 41 #include "sky/engine/wtf/Vector.h"
42 #include "wtf/unicode/CharacterNames.h" 42 #include "sky/engine/wtf/unicode/CharacterNames.h"
43 43
44 namespace blink { 44 namespace blink {
45 45
46 using namespace WTF::Unicode; 46 using namespace WTF::Unicode;
47 47
48 static inline InlineBox* createInlineBoxForRenderer(RenderObject* obj, bool isRo otLineBox, bool isOnlyRun = false) 48 static inline InlineBox* createInlineBoxForRenderer(RenderObject* obj, bool isRo otLineBox, bool isOnlyRun = false)
49 { 49 {
50 if (isRootLineBox) 50 if (isRootLineBox)
51 return toRenderBlockFlow(obj)->createAndAppendRootInlineBox(); 51 return toRenderBlockFlow(obj)->createAndAppendRootInlineBox();
52 52
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 float logicalLeft = logicalLeftOffsetForLine(logicalHeight(), false).toFloat (); 1586 float logicalLeft = logicalLeftOffsetForLine(logicalHeight(), false).toFloat ();
1587 float availableLogicalWidth = logicalRightOffsetForLine(logicalHeight(), fal se) - logicalLeft; 1587 float availableLogicalWidth = logicalRightOffsetForLine(logicalHeight(), fal se) - logicalLeft;
1588 updateLogicalWidthForAlignment(textAlign, 0, 0, logicalLeft, totalLogicalWid th, availableLogicalWidth, 0); 1588 updateLogicalWidthForAlignment(textAlign, 0, 0, logicalLeft, totalLogicalWid th, availableLogicalWidth, 0);
1589 1589
1590 if (!style()->isLeftToRightDirection()) 1590 if (!style()->isLeftToRightDirection())
1591 return logicalWidth() - logicalLeft; 1591 return logicalWidth() - logicalLeft;
1592 return logicalLeft; 1592 return logicalLeft;
1593 } 1593 }
1594 1594
1595 } 1595 }
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderBlockFlow.cpp ('k') | sky/engine/core/rendering/RenderBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698