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

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

Issue 2873483002: [DMC #5.6] Add type cast for SpellCheckMarkerListImpl (Closed)
Patch Set: Rebase 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/SpellCheckMarkerListImplTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImplTest.cpp b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImplTest.cpp
index e814c1fafeb74c2ef676bf779f4cc6dd53be3f82..a5772f2cc80c0591208502e5c374a518a3dd8408 100644
--- a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImplTest.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImplTest.cpp
@@ -5,6 +5,7 @@
#include "core/editing/markers/SpellCheckMarkerListImpl.h"
#include "core/editing/markers/RenderedDocumentMarker.h"
+#include "core/editing/markers/SpellingMarkerListImpl.h"
#include "platform/heap/Handle.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -12,8 +13,7 @@ namespace blink {
class SpellCheckMarkerListImplTest : public ::testing::Test {
protected:
- SpellCheckMarkerListImplTest()
- : marker_list_(new SpellCheckMarkerListImpl()) {}
+ SpellCheckMarkerListImplTest() : marker_list_(new SpellingMarkerListImpl()) {}
DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
return new DocumentMarker(DocumentMarker::kSpelling, start_offset,

Powered by Google App Engine
This is Rietveld 408576698