| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
|
| index 0566f7cff8f0cf19bda506d358d9109eee305fde..899bd63468aac2b56beedf98b7b5d122cdb5bc8c 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
|
| @@ -73,9 +73,9 @@ DocumentMarkerList* CreateListForType(DocumentMarker::MarkerType type) {
|
| return new CompositionMarkerListImpl();
|
| case DocumentMarker::kSpelling:
|
| case DocumentMarker::kGrammar:
|
| - return new SpellCheckMarkerListImpl();
|
| + return new SpellCheckMarkerListImpl(type);
|
| default:
|
| - return new GenericDocumentMarkerListImpl();
|
| + return new GenericDocumentMarkerListImpl(type);
|
| }
|
| }
|
|
|
|
|