summaryrefslogtreecommitdiffstats
path: root/content/common/resize_params.cc
blob: ea9f18fb65b2041e7fda33666b7a6dbbd496b4af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2015 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.

#include "content/common/resize_params.h"

namespace content {

ResizeParams::ResizeParams()
    : top_controls_shrink_blink_size(false),
      top_controls_height(0.f),
      is_fullscreen_granted(false),
      display_mode(blink::WebDisplayModeUndefined),
      needs_resize_ack(false) {}

ResizeParams::ResizeParams(const ResizeParams& other) = default;

ResizeParams::~ResizeParams() {}

}  // namespace content