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
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45

cc / trees / browser_controls_params.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_BROWSER_CONTROLS_PARAMS_H_
#define CC_TREES_BROWSER_CONTROLS_PARAMS_H_

#include "cc/cc_export.h"

namespace cc {

struct CC_EXPORT BrowserControlsParams {
  // The height of the top controls (always 0 on platforms where URL-bar hiding
  // isn't supported).
  float top_controls_height = 0.f;

  // The minimum visible height of the top controls.
  float top_controls_min_height = 0.f;

  // The height of the bottom controls.
  float bottom_controls_height = 0.f;

  // The minimum visible height of the bottom controls.
  float bottom_controls_min_height = 0.f;

  // Whether or not the changes to the browser controls heights should be
  // animated.
  bool animate_browser_controls_height_changes = false;

  // Whether or not Blink's viewport size should be shrunk by the height of the
  // URL-bar (always false on platforms where URL-bar hiding isn't supported).
  bool browser_controls_shrink_blink_size = false;

  // Whether or not the top controls should only expand at the top of the page
  // contents. If true, collapsed top controls won't begin scrolling into view
  // until the page is scrolled to the top.
  bool only_expand_top_controls_at_page_top = false;

  bool operator==(const BrowserControlsParams& other) const;
  bool operator!=(const BrowserControlsParams& other) const;
};

}  // namespace cc

#endif  // CC_TREES_BROWSER_CONTROLS_PARAMS_H_