| Index: webkit/glue/webcursor_mac.mm
|
| diff --git a/webkit/glue/webcursor_mac.mm b/webkit/glue/webcursor_mac.mm
|
| index fad30e49c09a9f9f987df00a3f1fb8838953288c..8c72da206af47101416ae2c25435e43203485bcd 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"
|
|
|
| #if WEBKIT_USING_SKIA
|
| #include "skia/ext/skia_utils_mac.h"
|
| @@ -29,7 +29,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];
|
|
|