#include "third_party/blink/renderer/core/editing/markers/suggestion_marker_properties.h"
namespace blink {
SuggestionMarkerProperties::SuggestionMarkerProperties() = default;
SuggestionMarkerProperties::SuggestionMarkerProperties(
const SuggestionMarkerProperties& other) = default;
SuggestionMarkerProperties& SuggestionMarkerProperties::operator=(
const SuggestionMarkerProperties& other) = default;
SuggestionMarkerProperties::Builder::Builder() = default;
SuggestionMarkerProperties::Builder::Builder(
const SuggestionMarkerProperties& data) { … }
SuggestionMarkerProperties SuggestionMarkerProperties::Builder::Build() const { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetType(
SuggestionMarker::SuggestionType type) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetRemoveOnFinishComposing(
bool remove_on_finish_composing) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetSuggestions(
const Vector<String>& suggestions) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetHighlightColor(Color highlight_color) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetUnderlineColor(Color underline_color) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetBackgroundColor(
Color background_color) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetThickness(
ui::mojom::ImeTextSpanThickness thickness) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetUnderlineStyle(
ui::mojom::ImeTextSpanUnderlineStyle underline_style) { … }
SuggestionMarkerProperties::Builder&
SuggestionMarkerProperties::Builder::SetTextColor(Color text_color) { … }
}