| 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/chromeos/x11/display_snapshot_x11.h" | 5 #include "ui/display/manager/chromeos/x11/display_snapshot_x11.h" |
| 6 | 6 |
| 7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
| 8 #include "ui/display/chromeos/x11/display_mode_x11.h" | 8 #include "ui/display/manager/chromeos/x11/display_mode_x11.h" |
| 9 | 9 |
| 10 namespace ui { | 10 namespace ui { |
| 11 | 11 |
| 12 DisplaySnapshotX11::DisplaySnapshotX11( | 12 DisplaySnapshotX11::DisplaySnapshotX11( |
| 13 int64_t display_id, | 13 int64_t display_id, |
| 14 const gfx::Point& origin, | 14 const gfx::Point& origin, |
| 15 const gfx::Size& physical_size, | 15 const gfx::Size& physical_size, |
| 16 DisplayConnectionType type, | 16 DisplayConnectionType type, |
| 17 bool is_aspect_preserving_scaling, | 17 bool is_aspect_preserving_scaling, |
| 18 bool has_overscan, | 18 bool has_overscan, |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 output_, | 52 output_, |
| 53 crtc_, | 53 crtc_, |
| 54 current_mode_ | 54 current_mode_ |
| 55 ? static_cast<const DisplayModeX11*>(current_mode_)->mode_id() | 55 ? static_cast<const DisplayModeX11*>(current_mode_)->mode_id() |
| 56 : 0, | 56 : 0, |
| 57 physical_size_.width(), | 57 physical_size_.width(), |
| 58 physical_size_.height()); | 58 physical_size_.height()); |
| 59 } | 59 } |
| 60 | 60 |
| 61 } // namespace ui | 61 } // namespace ui |
| OLD | NEW |