#include "third_party/blink/renderer/core/editing/ime/text_format.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_text_format_init.h"
namespace blink {
TextFormat::TextFormat(wtf_size_t range_start,
wtf_size_t range_end,
const String& underline_style,
const String& underline_thickness)
: … { … }
TextFormat* TextFormat::Create(wtf_size_t range_start,
wtf_size_t range_end,
const String& underline_style,
const String& underline_thickness) { … }
TextFormat::TextFormat(const TextFormatInit* dict) { … }
TextFormat* TextFormat::Create(const TextFormatInit* dict) { … }
wtf_size_t TextFormat::rangeStart() const { … }
wtf_size_t TextFormat::rangeEnd() const { … }
String TextFormat::underlineStyle() const { … }
String TextFormat::underlineThickness() const { … }
}