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

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
« no previous file with comments | « Source/core/layout/line/LineWidth.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..7b900a42ea084b2a5f566034105091e76a5decba 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)
+ : layoutText(0)
, width(0)
, startOffset(0)
, endOffset(0)
{
}
- LayoutText* renderer;
+ LayoutText* layoutText;
float width;
int startOffset;
int endOffset;
« no previous file with comments | « Source/core/layout/line/LineWidth.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698