| Index: third_party/WebKit/Source/core/paint/TextPainter.h
|
| diff --git a/third_party/WebKit/Source/core/paint/TextPainter.h b/third_party/WebKit/Source/core/paint/TextPainter.h
|
| index a3d1de2ba5473b27d3d3da17de202d5bd3f67385..6be2ad1ee971fe1bedcdd9c3105a75b81f3b7b8a 100644
|
| --- a/third_party/WebKit/Source/core/paint/TextPainter.h
|
| +++ b/third_party/WebKit/Source/core/paint/TextPainter.h
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "core/CoreExport.h"
|
| #include "core/style/ComputedStyleConstants.h"
|
| -#include "platform/fonts/TextBlob.h"
|
| #include "platform/geometry/FloatPoint.h"
|
| #include "platform/geometry/FloatRect.h"
|
| #include "platform/geometry/LayoutRect.h"
|
| @@ -58,8 +57,7 @@ class CORE_EXPORT TextPainter {
|
| void paint(unsigned startOffset,
|
| unsigned endOffset,
|
| unsigned length,
|
| - const Style&,
|
| - TextBlobPtr* cachedTextBlob = 0);
|
| + const Style&);
|
|
|
| struct Style {
|
| STACK_ALLOCATED();
|
| @@ -104,8 +102,7 @@ class CORE_EXPORT TextPainter {
|
| template <PaintInternalStep step>
|
| void paintInternal(unsigned startOffset,
|
| unsigned endOffset,
|
| - unsigned truncationPoint,
|
| - TextBlobPtr* cachedTextBlob = 0);
|
| + unsigned truncationPoint);
|
|
|
| void paintEmphasisMarkForCombinedText();
|
|
|
|
|