| Index: third_party/WebKit/Source/core/editing/CompositionUnderline.h
|
| diff --git a/third_party/WebKit/Source/core/editing/CompositionUnderline.h b/third_party/WebKit/Source/core/editing/CompositionUnderline.h
|
| index 5598c80dc430e0674e41d1e4a93d67a34e86b5f2..cb7d7b4eceec8ebdf9ae6402aa9da4a7a5754433 100644
|
| --- a/third_party/WebKit/Source/core/editing/CompositionUnderline.h
|
| +++ b/third_party/WebKit/Source/core/editing/CompositionUnderline.h
|
| @@ -32,6 +32,8 @@
|
|
|
| namespace blink {
|
|
|
| +struct WebCompositionUnderline;
|
| +
|
| class CORE_EXPORT CompositionUnderline {
|
| DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
|
|
|
| @@ -42,6 +44,8 @@ class CORE_EXPORT CompositionUnderline {
|
| bool thick,
|
| const Color& background_color);
|
|
|
| + CompositionUnderline(const WebCompositionUnderline&);
|
| +
|
| unsigned StartOffset() const { return start_offset_; }
|
| unsigned EndOffset() const { return end_offset_; }
|
| const Color& GetColor() const { return color_; }
|
|
|