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

Unified Diff: ui/ozone/platform/dri/dri_surface_factory.h

Issue 556073003: [Ozone-DRI] Do proper bounds checks when moving the cursor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@restore-cursor
Patch Set: Cache window Created 6 years, 3 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/ozone/platform/dri/dri_surface_factory.h
diff --git a/ui/ozone/platform/dri/dri_surface_factory.h b/ui/ozone/platform/dri/dri_surface_factory.h
index 11d0151d9ace5194e0d1ad7165d3f652b9c2dc2f..6800128946c7ff303c21184b25d37e68d1f39ec4 100644
--- a/ui/ozone/platform/dri/dri_surface_factory.h
+++ b/ui/ozone/platform/dri/dri_surface_factory.h
@@ -16,7 +16,7 @@
namespace ui {
class DriBuffer;
-class DriWindowManager;
+class DriWindowDelegateManager;
class DriWrapper;
class ScreenManager;
class SurfaceOzoneCanvas;
@@ -31,7 +31,7 @@ class DriSurfaceFactory : public SurfaceFactoryOzone,
DriSurfaceFactory(DriWrapper* drm,
ScreenManager* screen_manager,
- DriWindowManager* window_manager);
+ DriWindowDelegateManager* window_manager);
virtual ~DriSurfaceFactory();
// Describes the state of the hardware after initialization.
@@ -71,7 +71,7 @@ class DriSurfaceFactory : public SurfaceFactoryOzone,
DriWrapper* drm_; // Not owned.
ScreenManager* screen_manager_; // Not owned.
- DriWindowManager* window_manager_; // Not owned.
+ DriWindowDelegateManager* window_manager_; // Not owned.
HardwareState state_;
scoped_refptr<DriBuffer> cursor_buffers_[2];

Powered by Google App Engine
This is Rietveld 408576698