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

Unified Diff: third_party/WebKit/Source/core/editing/CompositionUnderline.h

Issue 2826373002: Move CompositionUnderlineVectorBuilder.* from web/ -> core/editing/. (Closed)
Patch Set: Change CompositionUnderlineVectorBuilder to have an explicit method to build a Vector, rather than … Created 3 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
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_; }

Powered by Google App Engine
This is Rietveld 408576698