Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: third_party/WebKit/Source/core/layout/ViewFragmentationContext.h

Issue 1492143002: Add support for printing multicol containers, and enable it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Okay, bots. You won this round! Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698