| Index: third_party/WebKit/Source/core/layout/ng/NGBlockLayoutAlgorithm.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/NGBlockLayoutAlgorithm.h b/third_party/WebKit/Source/core/layout/ng/NGBlockLayoutAlgorithm.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0fc44a2f89d7018722ce55925a20d6ac89116996
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/layout/ng/NGBlockLayoutAlgorithm.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2016 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 NGBlockLayoutAlgorithm_h
|
| +#define NGBlockLayoutAlgorithm_h
|
| +
|
| +namespace blink {
|
| +
|
| +class LayoutBox;
|
| +class NGConstraintSpace;
|
| +
|
| +class NGBlockLayoutAlgorithm {
|
| +public:
|
| + NGBlockLayoutAlgorithm();
|
| +
|
| + NGConstraintSpace createConstraintSpaceFromLayoutObject(const LayoutBox&);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // NGBlockLayoutAlgorithm_h
|
|
|