chromium/third_party/blink/renderer/core/layout/break_token.cc

// Copyright 2017 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/layout/break_token.h"

#include "third_party/blink/renderer/core/layout/inline/inline_break_token.h"
#include "third_party/blink/renderer/core/layout/block_break_token.h"
#include "third_party/blink/renderer/platform/wtf/size_assertions.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

namespace  // namespace

bool BreakToken::IsInParallelFlow() const {}

#if DCHECK_IS_ON()

namespace {

void AppendBreakTokenToString(const BreakToken* token,
                              StringBuilder* string_builder,
                              unsigned indent = 2) {}
}  // namespace

String BreakToken::ToString() const {}

void BreakToken::ShowBreakTokenTree() const {}
#endif  // DCHECK_IS_ON()

void BreakToken::Trace(Visitor* visitor) const {}

void BreakToken::TraceAfterDispatch(Visitor* visitor) const {}

}  // namespace blink