chromium/third_party/blink/renderer/platform/text/hyphenation.cc

// Copyright 2016 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/platform/text/hyphenation.h"

#include "base/containers/adapters.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"

namespace blink {

void Hyphenation::Initialize(const AtomicString& locale) {}

void Hyphenation::SetLimits(wtf_size_t min_prefix_length,
                            wtf_size_t min_suffix_length,
                            wtf_size_t min_word_length) {}

wtf_size_t Hyphenation::FirstHyphenLocation(const StringView& text,
                                            wtf_size_t after_index) const {}

Vector<wtf_size_t, 8> Hyphenation::HyphenLocations(
    const StringView& text) const {}

}  // namespace blink