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

Unified Diff: ui/display/chromeos/test/test_display_snapshot.cc

Issue 187073002: Refactoring display configuration state to allow generic state objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 9 months 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/test/test_display_snapshot.h ('k') | ui/display/chromeos/x11/display_mode_x11.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/chromeos/test/test_display_snapshot.cc
diff --git a/ui/display/chromeos/test/test_display_snapshot.cc b/ui/display/chromeos/test/test_display_snapshot.cc
new file mode 100644
index 0000000000000000000000000000000000000000..90211f8d0095c5d4a67abc06e47dd9ea4e26922d
--- /dev/null
+++ b/ui/display/chromeos/test/test_display_snapshot.cc
@@ -0,0 +1,47 @@
+// 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/test/test_display_snapshot.h"
+
+namespace ui {
+TestDisplaySnapshot::TestDisplaySnapshot()
+ : DisplaySnapshot(0,
+ false,
+ gfx::Point(0, 0),
+ gfx::Size(0, 0),
+ OUTPUT_TYPE_UNKNOWN,
+ false,
+ std::vector<const DisplayMode*>(),
+ NULL,
+ NULL) {}
+
+TestDisplaySnapshot::TestDisplaySnapshot(
+ 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)
+ : DisplaySnapshot(display_id,
+ has_proper_display_id,
+ origin,
+ physical_size,
+ type,
+ is_aspect_preserving_scaling,
+ modes,
+ current_mode,
+ native_mode) {}
+
+TestDisplaySnapshot::~TestDisplaySnapshot() {}
+
+std::string TestDisplaySnapshot::GetDisplayName() { return ""; }
+
+bool TestDisplaySnapshot::GetOverscanFlag() { return false; }
+
+std::string TestDisplaySnapshot::ToString() const { return ""; }
+
+} // namespace ui
« no previous file with comments | « ui/display/chromeos/test/test_display_snapshot.h ('k') | ui/display/chromeos/x11/display_mode_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698