chromium/third_party/blink/renderer/core/editing/ime/text_format.cc

// Copyright 2021 The Chromium Authors
// 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/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 {}

}  // namespace blink