#include "third_party/blink/renderer/core/editing/markers/suggestion_marker.h"
#include "third_party/blink/renderer/core/editing/markers/suggestion_marker_properties.h"
namespace blink {
int32_t SuggestionMarker::current_tag_ = …;
SuggestionMarker::SuggestionMarker(unsigned start_offset,
unsigned end_offset,
const SuggestionMarkerProperties& properties)
: … { … }
int32_t SuggestionMarker::Tag() const { … }
SuggestionMarker::SuggestionType SuggestionMarker::GetSuggestionType() const { … }
DocumentMarker::MarkerType SuggestionMarker::GetType() const { … }
const Vector<String>& SuggestionMarker::Suggestions() const { … }
bool SuggestionMarker::IsMisspelling() const { … }
bool SuggestionMarker::NeedsRemovalOnFinishComposing() const { … }
Color SuggestionMarker::SuggestionHighlightColor() const { … }
void SuggestionMarker::SetSuggestion(uint32_t suggestion_index,
const String& new_suggestion) { … }
int32_t SuggestionMarker::NextTag() { … }
}