| Index: ui/display/chromeos/display_snapshot.cc
|
| diff --git a/ui/display/chromeos/display_snapshot.cc b/ui/display/chromeos/display_snapshot.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..db55dea3c700ce85a22bcb8d30fde381942e2944
|
| --- /dev/null
|
| +++ b/ui/display/chromeos/display_snapshot.cc
|
| @@ -0,0 +1,30 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ui/display/chromeos/display_snapshot.h"
|
| +
|
| +namespace ui {
|
| +
|
| +DisplaySnapshot::DisplaySnapshot(int64_t display_id,
|
| + bool has_proper_display_id,
|
| + const gfx::Point& origin,
|
| + const gfx::Size& physical_size,
|
| + OutputType type,
|
| + bool is_aspect_preserving_scaling,
|
| + const std::vector<const DisplayMode*>& modes,
|
| + const DisplayMode* current_mode,
|
| + const DisplayMode* native_mode)
|
| + : display_id_(display_id),
|
| + has_proper_display_id_(has_proper_display_id),
|
| + origin_(origin),
|
| + physical_size_(physical_size),
|
| + type_(type),
|
| + is_aspect_preserving_scaling_(is_aspect_preserving_scaling),
|
| + modes_(modes),
|
| + current_mode_(current_mode),
|
| + native_mode_(native_mode) {}
|
| +
|
| +DisplaySnapshot::~DisplaySnapshot() {}
|
| +
|
| +} // namespace ui
|
|
|