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

Unified Diff: ui/gfx/test/test_screen.cc

Issue 1182303005: Fixed the Touchscreen.TouchEventsEnabled histogram to record the correct values on X11 and Ozone ba… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added logging.h include to device_data_manager_test_api_stub.cc. Created 5 years, 5 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/gfx/test/test_screen.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/test/test_screen.cc
diff --git a/ui/gfx/test/test_screen.cc b/ui/gfx/test/test_screen.cc
new file mode 100644
index 0000000000000000000000000000000000000000..31361dd0151dfbd133b7b2ceee46172c1889cbc6
--- /dev/null
+++ b/ui/gfx/test/test_screen.cc
@@ -0,0 +1,61 @@
+// Copyright 2015 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 <vector>
+
+#include "ui/gfx/test/test_screen.h"
+
+namespace gfx {
+namespace test {
+
+TestScreen::TestScreen() {
+}
+
+TestScreen::~TestScreen() {
+}
+
+gfx::Point TestScreen::GetCursorScreenPoint() {
+ return gfx::Point();
+}
+
+gfx::NativeWindow TestScreen::GetWindowUnderCursor() {
+ return nullptr;
+}
+
+gfx::NativeWindow TestScreen::GetWindowAtScreenPoint(const gfx::Point& point) {
+ return nullptr;
+}
+
+int TestScreen::GetNumDisplays() const {
+ return 1;
+}
+
+std::vector<gfx::Display> TestScreen::GetAllDisplays() const {
+ return std::vector<gfx::Display>(1, display_);
+}
+
+gfx::Display TestScreen::GetDisplayNearestWindow(gfx::NativeView view) const {
+ return display_;
+}
+
+gfx::Display TestScreen::GetDisplayNearestPoint(const gfx::Point& point) const {
+ return display_;
+}
+
+gfx::Display TestScreen::GetDisplayMatching(const gfx::Rect& match_rect) const {
+ return display_;
+}
+
+gfx::Display TestScreen::GetPrimaryDisplay() const {
+ return display_;
+}
+
+void TestScreen::AddObserver(gfx::DisplayObserver* observer) {
+}
+
+void TestScreen::RemoveObserver(gfx::DisplayObserver* observer) {
+}
+
+} // namespace test
+} // namespace gfx
« no previous file with comments | « ui/gfx/test/test_screen.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698