| Index: third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp b/third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp
|
| index fe22d7bafb4029ec3bd38d8bac0d03e54779ec91..03d94a65873fdf60a7a93198ff90a68cbaa94078 100644
|
| --- a/third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/EllipsisBoxPainter.cpp
|
| @@ -5,10 +5,10 @@
|
| #include "core/paint/EllipsisBoxPainter.h"
|
|
|
| #include "core/layout/TextRunConstructor.h"
|
| +#include "core/layout/api/LineLayoutAPIShim.h"
|
| #include "core/layout/api/SelectionState.h"
|
| #include "core/layout/line/EllipsisBox.h"
|
| #include "core/layout/line/RootInlineBox.h"
|
| -#include "core/paint/LineLayoutPaintShim.h"
|
| #include "core/paint/PaintInfo.h"
|
| #include "core/paint/TextPainter.h"
|
| #include "platform/graphics/GraphicsContextStateSaver.h"
|
| @@ -66,7 +66,7 @@ void EllipsisBoxPainter::paintEllipsis(const PaintInfo& paintInfo, const LayoutP
|
|
|
| void EllipsisBoxPainter::paintSelection(GraphicsContext& context, const LayoutPoint& boxOrigin, const ComputedStyle& style, const Font& font)
|
| {
|
| - Color textColor = LineLayoutPaintShim::layoutObjectFrom(m_ellipsisBox.lineLayoutItem())->resolveColor(style, CSSPropertyColor);
|
| + Color textColor = LineLayoutAPIShim::layoutObjectFrom(m_ellipsisBox.lineLayoutItem())->resolveColor(style, CSSPropertyColor);
|
| Color c = m_ellipsisBox.lineLayoutItem().selectionBackgroundColor();
|
| if (!c.alpha())
|
| return;
|
|
|