| 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;
|
|
|