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/display_snapshot_virtual.h" | 5 #include "ui/display/chromeos/display_snapshot_virtual.h" |
6 | 6 |
7 #include <inttypes.h> | 7 #include <inttypes.h> |
8 | 8 |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "ui/display/types/display_mode.h" | 10 #include "ui/display/types/display_mode.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 gfx::Point(0, 0), | 24 gfx::Point(0, 0), |
25 // Calculate physical size assuming 96dpi display. | 25 // Calculate physical size assuming 96dpi display. |
26 gfx::Size(display_size.width() * kVirtualDisplayPitchMM, | 26 gfx::Size(display_size.width() * kVirtualDisplayPitchMM, |
27 display_size.height() * kVirtualDisplayPitchMM), | 27 display_size.height() * kVirtualDisplayPitchMM), |
28 DISPLAY_CONNECTION_TYPE_VIRTUAL, | 28 DISPLAY_CONNECTION_TYPE_VIRTUAL, |
29 false, | 29 false, |
30 false, | 30 false, |
31 "Virtual display", | 31 "Virtual display", |
32 base::FilePath(), | 32 base::FilePath(), |
33 std::vector<const DisplayMode*>(), | 33 std::vector<const DisplayMode*>(), |
34 std::vector<uint8_t>(), // Virtual displays have no EDID. | |
35 nullptr, | 34 nullptr, |
36 nullptr) { | 35 nullptr) { |
37 mode_.reset(new DisplayMode(display_size, false, 30)); | 36 mode_.reset(new DisplayMode(display_size, false, 30)); |
38 modes_.push_back(mode_.get()); | 37 modes_.push_back(mode_.get()); |
39 | 38 |
40 native_mode_ = modes_.front(); | 39 native_mode_ = modes_.front(); |
41 } | 40 } |
42 | 41 |
43 DisplaySnapshotVirtual::~DisplaySnapshotVirtual() {} | 42 DisplaySnapshotVirtual::~DisplaySnapshotVirtual() {} |
44 | 43 |
45 std::string DisplaySnapshotVirtual::ToString() const { | 44 std::string DisplaySnapshotVirtual::ToString() const { |
46 return base::StringPrintf( | 45 return base::StringPrintf( |
47 "Virtual id=%" PRId64 " current_mode=%s physical_size=%s", display_id_, | 46 "Virtual id=%" PRId64 " current_mode=%s physical_size=%s", display_id_, |
48 current_mode_ ? current_mode_->ToString().c_str() : "nullptr", | 47 current_mode_ ? current_mode_->ToString().c_str() : "nullptr", |
49 physical_size_.ToString().c_str()); | 48 physical_size_.ToString().c_str()); |
50 } | 49 } |
51 | 50 |
52 } // namespace ui | 51 } // namespace ui |
OLD | NEW |