OLD | NEW |
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 : browser_controls_shrink_blink_size(false), |
11 top_controls_height(0.f), | 11 top_controls_height(0.f), |
12 bottom_controls_height(0.f), | 12 bottom_controls_height(0.f), |
13 is_fullscreen_granted(false), | 13 is_fullscreen_granted(false), |
14 display_mode(blink::WebDisplayModeUndefined), | 14 display_mode(blink::WebDisplayModeUndefined), |
15 needs_resize_ack(false) {} | 15 needs_resize_ack(false) {} |
16 | 16 |
17 ResizeParams::ResizeParams(const ResizeParams& other) = default; | 17 ResizeParams::ResizeParams(const ResizeParams& other) = default; |
18 | 18 |
19 ResizeParams::~ResizeParams() {} | 19 ResizeParams::~ResizeParams() {} |
20 | 20 |
21 } // namespace content | 21 } // namespace content |
OLD | NEW |