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

Unified Diff: third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp

Issue 2906953002: [DMC #26] Add CompositionMarker::Thickness enum (Closed)
Patch Set: Created 3 years, 7 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/markers/CompositionMarkerListImplTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
index 5a6e3239cdbe2a1be429de73616e96af91c04af9..8f143337a4fca735c6c00b871bc15034ad8e6b62 100644
--- a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
@@ -15,7 +15,8 @@ class CompositionMarkerListImplTest : public EditingTestBase {
: marker_list_(new CompositionMarkerListImpl()) {}
DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
- return new CompositionMarker(start_offset, end_offset, Color::kBlack, false,
+ return new CompositionMarker(start_offset, end_offset, Color::kBlack,
+ CompositionMarker::Thickness::kThin,
Color::kBlack);
}

Powered by Google App Engine
This is Rietveld 408576698