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

Unified Diff: Source/core/layout/line/WordMeasurement.h

Issue 1103883002: Convert Block code to layoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/layout/line/WordMeasurement.h
diff --git a/Source/core/layout/line/WordMeasurement.h b/Source/core/layout/line/WordMeasurement.h
index ae1ec4b69a63013c6ad7b05f0bc7e38e2868a672..b2473cf42958ea7d3703609660192a747f4b0c41 100644
--- a/Source/core/layout/line/WordMeasurement.h
+++ b/Source/core/layout/line/WordMeasurement.h
@@ -34,14 +34,14 @@ class LayoutText;
class WordMeasurement {
public:
WordMeasurement()
- : renderer(0)
+ : layoutObject(0)
leviw_travelin_and_unemployed 2015/04/24 18:47:32 This is always a LayoutText. Can we call it layout
dsinclair 2015/04/25 00:53:44 Done
, width(0)
, startOffset(0)
, endOffset(0)
{
}
- LayoutText* renderer;
+ LayoutText* layoutObject;
float width;
int startOffset;
int endOffset;
« Source/core/layout/LayoutBlockFlowLine.cpp ('K') | « Source/core/layout/line/LineWidth.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698