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

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

Issue 2908643002: [DMC #23] Add CompositionMarker (subclass of DocumentMarker) (Closed)
Patch Set: Attempt to fix Android build by using EXPECT_FALSE() 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 dcd94cd063b4792a022d5552fc691a95c2458f13..5a6e3239cdbe2a1be429de73616e96af91c04af9 100644
--- a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
@@ -5,6 +5,7 @@
#include "core/editing/markers/CompositionMarkerListImpl.h"
#include "core/editing/EditingTestBase.h"
+#include "core/editing/markers/CompositionMarker.h"
namespace blink {
@@ -14,8 +15,8 @@ class CompositionMarkerListImplTest : public EditingTestBase {
: marker_list_(new CompositionMarkerListImpl()) {}
DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
- return new DocumentMarker(start_offset, end_offset, Color::kBlack, false,
- Color::kBlack);
+ return new CompositionMarker(start_offset, end_offset, Color::kBlack, false,
+ Color::kBlack);
}
Persistent<CompositionMarkerListImpl> marker_list_;

Powered by Google App Engine
This is Rietveld 408576698