| Index: ui/display/chromeos/x11/display_snapshot_x11.cc
|
| diff --git a/ui/display/chromeos/x11/display_snapshot_x11.cc b/ui/display/chromeos/x11/display_snapshot_x11.cc
|
| deleted file mode 100644
|
| index 7e6b4e17d163b6274536b18ca407ed62a90e1492..0000000000000000000000000000000000000000
|
| --- a/ui/display/chromeos/x11/display_snapshot_x11.cc
|
| +++ /dev/null
|
| @@ -1,61 +0,0 @@
|
| -// 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/x11/display_snapshot_x11.h"
|
| -
|
| -#include "base/strings/stringprintf.h"
|
| -#include "ui/display/chromeos/x11/display_mode_x11.h"
|
| -
|
| -namespace ui {
|
| -
|
| -DisplaySnapshotX11::DisplaySnapshotX11(
|
| - int64_t display_id,
|
| - const gfx::Point& origin,
|
| - const gfx::Size& physical_size,
|
| - DisplayConnectionType type,
|
| - bool is_aspect_preserving_scaling,
|
| - bool has_overscan,
|
| - std::string display_name,
|
| - std::vector<std::unique_ptr<const DisplayMode>> modes,
|
| - const std::vector<uint8_t>& edid,
|
| - const DisplayMode* current_mode,
|
| - const DisplayMode* native_mode,
|
| - RROutput output,
|
| - RRCrtc crtc,
|
| - int index)
|
| - : DisplaySnapshot(display_id,
|
| - origin,
|
| - physical_size,
|
| - type,
|
| - is_aspect_preserving_scaling,
|
| - has_overscan,
|
| - false,
|
| - display_name,
|
| - // TODO(jdufault): Figure out if we can get the file
|
| - // descriptor that maps to the device.
|
| - base::FilePath(),
|
| - std::move(modes),
|
| - edid,
|
| - current_mode,
|
| - native_mode),
|
| - output_(output),
|
| - crtc_(crtc),
|
| - index_(index) {}
|
| -
|
| -DisplaySnapshotX11::~DisplaySnapshotX11() {}
|
| -
|
| -std::string DisplaySnapshotX11::ToString() const {
|
| - return base::StringPrintf(
|
| - "[type=%d, output=%ld, crtc=%ld, mode=%ld, dim=%dx%d]",
|
| - type_,
|
| - output_,
|
| - crtc_,
|
| - current_mode_
|
| - ? static_cast<const DisplayModeX11*>(current_mode_)->mode_id()
|
| - : 0,
|
| - physical_size_.width(),
|
| - physical_size_.height());
|
| -}
|
| -
|
| -} // namespace ui
|
|
|