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

Unified Diff: ui/aura/root_window_host_win.cc

Issue 9463003: aura-x11: Add custom web cursor support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 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/aura/root_window_host_win.cc
diff --git a/ui/aura/root_window_host_win.cc b/ui/aura/root_window_host_win.cc
index 84f510351072c8d63e19d0dd6facc8cf33fa0d8e..6e3f7ea2af7927ac51b99cc7b19b3f36bdcb8e83 100644
--- a/ui/aura/root_window_host_win.cc
+++ b/ui/aura/root_window_host_win.cc
@@ -219,6 +219,10 @@ void RootWindowHostWin::SetCursor(gfx::NativeCursor native_cursor) {
::SetCursor(LoadCursor(NULL, cursor_id));
}
+void RootWindowHostWin::SetCustomCursor(const gfx::PlatformCursor& cursor) {
+ NOTIMPLEMENTED();
+}
+
void RootWindowHostWin::SetCapture() {
if (!has_capture_) {
has_capture_ = true;

Powered by Google App Engine
This is Rietveld 408576698