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

Unified Diff: ui/platform_window/platform_window.h

Issue 431683002: platform_window: Add SetCursor & MoveCursorTo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/platform_window/DEPS ('k') | ui/platform_window/win/win_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/platform_window/platform_window.h
diff --git a/ui/platform_window/platform_window.h b/ui/platform_window/platform_window.h
index 37cd3c0c20910d8fe05535e96eb33d56bfa170fd..d5f5750e213f52de0581fdadf4aecb63c77545f6 100644
--- a/ui/platform_window/platform_window.h
+++ b/ui/platform_window/platform_window.h
@@ -6,6 +6,7 @@
#define UI_PLATFORM_WINDOW_PLATFORM_WINDOW_H_
#include "base/memory/scoped_ptr.h"
+#include "ui/base/cursor/cursor.h"
namespace gfx {
class Rect;
@@ -39,6 +40,9 @@ class PlatformWindow {
virtual void Maximize() = 0;
virtual void Minimize() = 0;
virtual void Restore() = 0;
+
+ virtual void SetCursor(PlatformCursor cursor) = 0;
+ virtual void MoveCursorTo(const gfx::Point& location) = 0;
};
} // namespace ui
« no previous file with comments | « ui/platform_window/DEPS ('k') | ui/platform_window/win/win_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698