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

Side by Side Diff: content/common/resize_params.cc

Issue 2106753004: Introduce bottom controls to CC and let it respond to scrolling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: vector->float in IPC Created 4 years, 4 months 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/resize_params.h" 5 #include "content/common/resize_params.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 ResizeParams::ResizeParams() 9 ResizeParams::ResizeParams()
10 : top_controls_shrink_blink_size(false), 10 : top_controls_shrink_blink_size(false),
11 top_controls_height(0.f), 11 top_controls_height(0.f),
12 bottom_controls_height(0.f),
12 is_fullscreen_granted(false), 13 is_fullscreen_granted(false),
13 display_mode(blink::WebDisplayModeUndefined), 14 display_mode(blink::WebDisplayModeUndefined),
14 needs_resize_ack(false) {} 15 needs_resize_ack(false) {}
15 16
16 ResizeParams::ResizeParams(const ResizeParams& other) = default; 17 ResizeParams::ResizeParams(const ResizeParams& other) = default;
17 18
18 ResizeParams::~ResizeParams() {} 19 ResizeParams::~ResizeParams() {}
19 20
20 } // namespace content 21 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698