blob: ed0c9813d750ac794e39bc63597170e761591c13 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/editing/markers/spell_check_marker.h"
namespace blink {
SpellCheckMarker::SpellCheckMarker(unsigned start_offset,
unsigned end_offset,
const String& description)
: DocumentMarker(start_offset, end_offset), description_(description) {
DCHECK_LT(start_offset, end_offset);
}
bool IsSpellCheckMarker(const DocumentMarker& marker) {
DocumentMarker::MarkerType type = marker.GetType();
return type == DocumentMarker::kSpelling || type == DocumentMarker::kGrammar;
}
} // namespace blink