// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EARLY_BREAK_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EARLY_BREAK_H_ #include "base/check_op.h" #include "base/memory/scoped_refptr.h" #include "third_party/blink/renderer/core/layout/block_node.h" #include "third_party/blink/renderer/core/layout/break_appeal.h" #include "third_party/blink/renderer/platform/wtf/gc_plugin.h" namespace blink { // Possible early unforced breakpoint. This represents a possible (and good) // location to break. In cases where we run out of space at an unideal location, // we may want to go back and break here instead. class EarlyBreak : public GarbageCollected<EarlyBreak> { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_EARLY_BREAK_H_