OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef ViewFragmentationContext_h |
| 6 #define ViewFragmentationContext_h |
| 7 |
| 8 #include "core/layout/FragmentationContext.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class LayoutView; |
| 13 |
| 14 class ViewFragmentationContext final : public FragmentationContext { |
| 15 public: |
| 16 ViewFragmentationContext(LayoutView& view) : m_view(view) { } |
| 17 bool isFragmentainerLogicalHeightKnown() final; |
| 18 LayoutUnit fragmentainerLogicalHeightAt(LayoutUnit blockOffset) final; |
| 19 LayoutUnit remainingLogicalHeightAt(LayoutUnit blockOffset) final; |
| 20 |
| 21 private: |
| 22 LayoutView& m_view; |
| 23 }; |
| 24 |
| 25 } // namespace blink |
| 26 |
| 27 #endif // ViewFragmentationContext_h |
OLD | NEW |