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

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

Issue 1957523004: Rename gfx::test::TestScreen to display::test::TestScreen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
deleted file mode 100644
index d0729c1877bac3af96fad63523d9e11df2327f58..0000000000000000000000000000000000000000
--- a/ui/gfx/test/test_screen.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// 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();
-}
-
-bool TestScreen::IsWindowUnderCursor(gfx::NativeWindow window) {
- return false;
-}
-
-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