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

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

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: Addressed asvitkine@'s comments from patch set 11. 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
Index: ui/gfx/test/test_screen.h
diff --git a/ui/mojo/init/screen_mojo.h b/ui/gfx/test/test_screen.h
similarity index 62%
copy from ui/mojo/init/screen_mojo.h
copy to ui/gfx/test/test_screen.h
index db7f48f75f9e37d47674162b5ff46b933e53d243..0d2b0ba9fd0ee5bf4b91ebd929e7cf1fc86763b4 100644
--- a/ui/mojo/init/screen_mojo.h
+++ b/ui/gfx/test/test_screen.h
@@ -2,43 +2,47 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UI_MOJO_INIT_SCREEN_MOJO_H_
-#define UI_MOJO_INIT_SCREEN_MOJO_H_
+#include <vector>
+#include "base/macros.h"
#include "ui/gfx/display.h"
-#include "ui/gfx/geometry/size.h"
#include "ui/gfx/screen.h"
-namespace ui {
-namespace mojo {
+namespace gfx {
+namespace test {
-class ScreenMojo : public gfx::Screen {
+// A dummy implementation of gfx::Screen that contains a single gfx::Display
+// only. The contained gfx::Display can be accessed and modified via
+// TestScreen::display().
+//
+// NOTE: Adding and removing gfx::DisplayOberver's are no-ops and observers will
+// NOT be notified ever.
+class TestScreen : public gfx::Screen {
public:
- ScreenMojo(const gfx::Size& screen_size_in_pixels, float device_pixel_ratio);
+ TestScreen();
+ ~TestScreen() override;
+
+ gfx::Display* display() { return &display_; }
// gfx::Screen:
gfx::Point GetCursorScreenPoint() override;
gfx::NativeWindow GetWindowUnderCursor() override;
gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point) override;
- gfx::Display GetPrimaryDisplay() const override;
- gfx::Display GetDisplayNearestWindow(gfx::NativeView view) const override;
- gfx::Display GetDisplayNearestPoint(const gfx::Point& point) const override;
int GetNumDisplays() const override;
std::vector<gfx::Display> GetAllDisplays() const override;
+ gfx::Display GetDisplayNearestWindow(gfx::NativeView view) const override;
+ gfx::Display GetDisplayNearestPoint(const gfx::Point& point) const override;
gfx::Display GetDisplayMatching(const gfx::Rect& match_rect) const override;
+ gfx::Display GetPrimaryDisplay() const override;
void AddObserver(gfx::DisplayObserver* observer) override;
void RemoveObserver(gfx::DisplayObserver* observer) override;
private:
- const gfx::Size screen_size_in_pixels_;
- const float device_pixel_ratio_;
-
+ // The only display.
gfx::Display display_;
- DISALLOW_COPY_AND_ASSIGN(ScreenMojo);
+ DISALLOW_COPY_AND_ASSIGN(TestScreen);
};
-} // namespace mojo
-} // namespace ui
-
-#endif // UI_MOJO_INIT_SCREEN_MOJO_H_
+} // namespace test
+} // namespace gfx

Powered by Google App Engine
This is Rietveld 408576698