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

Unified Diff: chrome/browser/ui/views/content_setting_bubble_contents.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, 9 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: chrome/browser/ui/views/content_setting_bubble_contents.cc
diff --git a/chrome/browser/ui/views/content_setting_bubble_contents.cc b/chrome/browser/ui/views/content_setting_bubble_contents.cc
index 4817b2fa730dcdfd94cdf7ee8ac259c9b17750c4..57e496a3838c515142eb2d434b6daa2d8ba54bd8 100644
--- a/chrome/browser/ui/views/content_setting_bubble_contents.cc
+++ b/chrome/browser/ui/views/content_setting_bubble_contents.cc
@@ -29,7 +29,7 @@
#include "ui/views/layout/layout_constants.h"
#if defined(USE_AURA)
-#include "ui/aura/cursor.h"
+#include "ui/base/cursor/cursor.h"
#endif
// If we don't clamp the maximum width, then very long URLs and titles can make
@@ -88,7 +88,7 @@ void ContentSettingBubbleContents::Favicon::OnMouseReleased(
gfx::NativeCursor ContentSettingBubbleContents::Favicon::GetCursor(
const views::MouseEvent& event) {
#if defined(USE_AURA)
- return aura::kCursorHand;
+ return ui::kCursorHand;
#elif defined(OS_WIN)
static HCURSOR g_hand_cursor = LoadCursor(NULL, IDC_HAND);
return g_hand_cursor;
« no previous file with comments | « ash/wm/toplevel_window_event_filter.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698