Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(723)

Unified Diff: ui/display/chromeos/x11/display_snapshot_x11.cc

Issue 2540313002: Split //ui/display and create //ui/display/manager. (Closed)
Patch Set: Cleanup export header. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/display/chromeos/x11/display_snapshot_x11.h ('k') | ui/display/chromeos/x11/display_util_x11.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ui/display/chromeos/x11/display_snapshot_x11.h ('k') | ui/display/chromeos/x11/display_util_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698