| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/display/chromeos/display_snapshot.h" |
| 6 |
| 7 namespace ui { |
| 8 |
| 9 DisplaySnapshot::DisplaySnapshot(int64_t display_id, |
| 10 bool has_proper_display_id, |
| 11 const gfx::Point& origin, |
| 12 const gfx::Size& physical_size, |
| 13 OutputType type, |
| 14 bool is_aspect_preserving_scaling, |
| 15 const std::vector<const DisplayMode*>& modes, |
| 16 const DisplayMode* current_mode, |
| 17 const DisplayMode* native_mode) |
| 18 : display_id_(display_id), |
| 19 has_proper_display_id_(has_proper_display_id), |
| 20 origin_(origin), |
| 21 physical_size_(physical_size), |
| 22 type_(type), |
| 23 is_aspect_preserving_scaling_(is_aspect_preserving_scaling), |
| 24 modes_(modes), |
| 25 current_mode_(current_mode), |
| 26 native_mode_(native_mode) {} |
| 27 |
| 28 DisplaySnapshot::~DisplaySnapshot() {} |
| 29 |
| 30 } // namespace ui |
| OLD | NEW |