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

Side by Side Diff: Source/core/layout/line/LineLayoutState.h

Issue 1110233003: Update list markers in notify change. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add Rebaseline Created 5 years, 7 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) 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 * Copyright (C) 2014 Adobe Systems Incorporated. All rights reserved. 5 * Copyright (C) 2014 Adobe Systems Incorporated. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 Vector<LayoutBlockFlow::FloatWithRect>& floats() { return m_floats; } 91 Vector<LayoutBlockFlow::FloatWithRect>& floats() { return m_floats; }
92 92
93 unsigned floatIndex() const { return m_floatIndex; } 93 unsigned floatIndex() const { return m_floatIndex; }
94 void setFloatIndex(unsigned floatIndex) { m_floatIndex = floatIndex; } 94 void setFloatIndex(unsigned floatIndex) { m_floatIndex = floatIndex; }
95 95
96 LayoutUnit adjustedLogicalLineTop() const { return m_adjustedLogicalLineTop; } 96 LayoutUnit adjustedLogicalLineTop() const { return m_adjustedLogicalLineTop; }
97 void setAdjustedLogicalLineTop(LayoutUnit value) { m_adjustedLogicalLineTop = value; } 97 void setAdjustedLogicalLineTop(LayoutUnit value) { m_adjustedLogicalLineTop = value; }
98 98
99 LayoutFlowThread* flowThread() const { return m_flowThread; } 99 LayoutFlowThread* flowThread() const { return m_flowThread; }
100 void setFlowThread(LayoutFlowThread* thread) { m_flowThread = thread; }
101 100
102 private: 101 private:
103 Vector<LayoutBlockFlow::FloatWithRect> m_floats; 102 Vector<LayoutBlockFlow::FloatWithRect> m_floats;
104 FloatingObject* m_lastFloat; 103 FloatingObject* m_lastFloat;
105 RootInlineBox* m_endLine; 104 RootInlineBox* m_endLine;
106 LineInfo m_lineInfo; 105 LineInfo m_lineInfo;
107 unsigned m_floatIndex; 106 unsigned m_floatIndex;
108 LayoutUnit m_endLineLogicalTop; 107 LayoutUnit m_endLineLogicalTop;
109 bool m_endLineMatched; 108 bool m_endLineMatched;
110 bool m_checkForFloatsFromLastLine; 109 bool m_checkForFloatsFromLastLine;
(...skipping 10 matching lines...) Expand all
121 LayoutUnit m_adjustedLogicalLineTop; 120 LayoutUnit m_adjustedLogicalLineTop;
122 121
123 bool m_usesPaintInvalidationBounds; 122 bool m_usesPaintInvalidationBounds;
124 123
125 LayoutFlowThread* m_flowThread; 124 LayoutFlowThread* m_flowThread;
126 }; 125 };
127 126
128 } 127 }
129 128
130 #endif // LineLayoutState_h 129 #endif // LineLayoutState_h
OLDNEW
« Source/core/layout/TextAutosizer.cpp ('K') | « Source/core/layout/TextAutosizer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698