OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ui/display/types/display_snapshot.h" | 5 #include "ui/display/types/display_snapshot.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 | 8 |
9 DisplaySnapshot::DisplaySnapshot(int64_t display_id, | 9 DisplaySnapshot::DisplaySnapshot(int64_t display_id, |
10 const gfx::Point& origin, | 10 const gfx::Point& origin, |
11 const gfx::Size& physical_size, | 11 const gfx::Size& physical_size, |
12 DisplayConnectionType type, | 12 DisplayConnectionType type, |
13 bool is_aspect_preserving_scaling, | |
14 bool has_overscan, | |
15 std::string display_name, | |
16 const std::vector<const DisplayMode*>& modes, | 13 const std::vector<const DisplayMode*>& modes, |
17 const DisplayMode* current_mode, | 14 const DisplayMode* current_mode, |
18 const DisplayMode* native_mode) | 15 const DisplayMode* native_mode) |
19 : display_id_(display_id), | 16 : display_id_(display_id), |
20 origin_(origin), | 17 origin_(origin), |
21 physical_size_(physical_size), | 18 physical_size_(physical_size), |
22 type_(type), | 19 type_(type), |
23 is_aspect_preserving_scaling_(is_aspect_preserving_scaling), | |
24 has_overscan_(has_overscan), | |
25 display_name_(display_name), | |
26 modes_(modes), | 20 modes_(modes), |
27 current_mode_(current_mode), | 21 current_mode_(current_mode), |
28 native_mode_(native_mode), | 22 native_mode_(native_mode), |
29 product_id_(kInvalidProductID) { | 23 product_id_(kInvalidProductID) { |
30 } | 24 } |
31 | 25 |
32 DisplaySnapshot::~DisplaySnapshot() {} | 26 DisplaySnapshot::~DisplaySnapshot() {} |
33 | 27 |
34 } // namespace ui | 28 } // namespace ui |
OLD | NEW |