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 |