Chromium Code Reviews| 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; |