| Index: third_party/WebKit/Source/core/layout/ng/ng_linebox_fragment.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_box_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_linebox_fragment.h
|
| similarity index 50%
|
| copy from third_party/WebKit/Source/core/layout/ng/ng_box_fragment.h
|
| copy to third_party/WebKit/Source/core/layout/ng/ng_linebox_fragment.h
|
| index 805c08c9046c9ccd43e9c341f4c158c9f3d6d944..aee2f50728c500683de92efd7e5ddedc298c7fb5 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_box_fragment.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_linebox_fragment.h
|
| @@ -1,34 +1,30 @@
|
| -// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef NGBoxFragment_h
|
| -#define NGBoxFragment_h
|
| +#ifndef NGLineboxFragment_h
|
| +#define NGLineboxFragment_h
|
|
|
| #include "core/CoreExport.h"
|
| #include "core/layout/ng/ng_fragment.h"
|
| -#include "core/layout/ng/ng_physical_box_fragment.h"
|
| +#include "core/layout/ng/ng_physical_linebox_fragment.h"
|
| #include "core/layout/ng/ng_writing_mode.h"
|
|
|
| namespace blink {
|
|
|
| -class CORE_EXPORT NGBoxFragment final : public NGFragment {
|
| +class CORE_EXPORT NGLineboxFragment final : public NGFragment {
|
| public:
|
| - NGBoxFragment(NGWritingMode writing_mode,
|
| - const NGPhysicalBoxFragment* physical_fragment)
|
| + NGLineboxFragment(NGWritingMode writing_mode,
|
| + const NGPhysicalLineboxFragment* physical_fragment)
|
| : NGFragment(writing_mode, physical_fragment) {}
|
| -
|
| - const WTF::Optional<NGLogicalOffset>& BfcOffset() const;
|
| -
|
| - const NGMarginStrut& EndMarginStrut() const;
|
| };
|
|
|
| -DEFINE_TYPE_CASTS(NGBoxFragment,
|
| +DEFINE_TYPE_CASTS(NGLineboxFragment,
|
| NGFragment,
|
| fragment,
|
| - fragment->Type() == NGPhysicalFragment::kFragmentBox,
|
| - fragment.Type() == NGPhysicalFragment::kFragmentBox);
|
| + fragment->Type() == NGPhysicalFragment::kFragmentLinebox,
|
| + fragment.Type() == NGPhysicalFragment::kFragmentLinebox);
|
|
|
| } // namespace blink
|
|
|
| -#endif // NGBoxFragment_h
|
| +#endif // NGLineboxFragment_h
|
|
|