| Index: chromeos/display/output_configurator.cc
|
| diff --git a/chromeos/display/output_configurator.cc b/chromeos/display/output_configurator.cc
|
| index b774e312a5c1aaf41c03040a953c01d5d93c8ddf..4e8f2a861c180f430b144d131a2c32a3c635ee09 100644
|
| --- a/chromeos/display/output_configurator.cc
|
| +++ b/chromeos/display/output_configurator.cc
|
| @@ -103,6 +103,11 @@ OutputConfigurator::ModeInfo::ModeInfo()
|
| height(0),
|
| interlaced(false) {}
|
|
|
| +OutputConfigurator::ModeInfo::ModeInfo(int width, int height, bool interlaced)
|
| + : width(width),
|
| + height(height),
|
| + interlaced(interlaced) {}
|
| +
|
| OutputConfigurator::CoordinateTransformation::CoordinateTransformation()
|
| : x_scale(1.0),
|
| x_offset(0.0),
|
| @@ -124,7 +129,8 @@ OutputConfigurator::OutputSnapshot::OutputSnapshot()
|
| is_aspect_preserving_scaling(false),
|
| touch_device_id(0),
|
| display_id(0),
|
| - has_display_id(false) {}
|
| + has_display_id(false),
|
| + index(0) {}
|
|
|
| OutputConfigurator::OutputSnapshot::~OutputSnapshot() {}
|
|
|
|
|