| Index: webkit/glue/webcursor_mac.mm
|
| diff --git a/webkit/glue/webcursor_mac.mm b/webkit/glue/webcursor_mac.mm
|
| index d3a6a20884b62d46451b06650e293001cfed220c..e2a2072394f8e278ea3a3d0e4f10e5d3a068f709 100644
|
| --- a/webkit/glue/webcursor_mac.mm
|
| +++ b/webkit/glue/webcursor_mac.mm
|
| @@ -7,12 +7,12 @@
|
| #import <AppKit/AppKit.h>
|
| #include <Carbon/Carbon.h>
|
|
|
| -#include "app/mac/nsimage_cache.h"
|
| #include "base/logging.h"
|
| #include "base/mac/scoped_cftyperef.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebImage.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebSize.h"
|
| +#include "ui/gfx/mac/nsimage_cache.h"
|
|
|
| using WebKit::WebCursorInfo;
|
| using WebKit::WebImage;
|
| @@ -25,7 +25,7 @@ namespace {
|
| NSCursor* LoadCursor(const char* name, int x, int y) {
|
| NSString* file_name = [NSString stringWithUTF8String:name];
|
| DCHECK(file_name);
|
| - NSImage* cursor_image = app::mac::GetCachedImageWithName(file_name);
|
| + NSImage* cursor_image = gfx::GetCachedImageWithName(file_name);
|
| DCHECK(cursor_image);
|
| return [[[NSCursor alloc] initWithImage:cursor_image
|
| hotSpot:NSMakePoint(x, y)] autorelease];
|
|
|