1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31

cc / trees / viewport_layers.h [blame]

// 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 CC_TREES_VIEWPORT_LAYERS_H_
#define CC_TREES_VIEWPORT_LAYERS_H_

#include "base/memory/ref_counted.h"
#include "cc/cc_export.h"
#include "cc/paint/element_id.h"

namespace cc {
class Layer;

// Viewport Layers are used to identify key layers to the compositor thread,
// so that it can perform viewport-based scrolling independently, such as
// for pinch-zoom or overscroll elasticity.
struct CC_EXPORT ViewportLayers {
  ViewportLayers();
  ~ViewportLayers();
  ElementId overscroll_elasticity_element_id;
  scoped_refptr<Layer> page_scale;
  scoped_refptr<Layer> inner_viewport_container;
  scoped_refptr<Layer> outer_viewport_container;
  scoped_refptr<Layer> inner_viewport_scroll;
  scoped_refptr<Layer> outer_viewport_scroll;
};

}  // namespace cc

#endif  // CC_TREES_VIEWPORT_LAYERS_H_