diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 02:00:32 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 02:00:32 +0000 |
commit | 58f343515fad33fa6fe096c8049bd91743f76c4e (patch) | |
tree | 2b109320c307f035d93a6ce540a2529e76fc7487 /webkit/glue | |
parent | 0b70acc5aff4408dd5dd62c5fb2912db42c76eb3 (diff) | |
download | chromium_src-58f343515fad33fa6fe096c8049bd91743f76c4e.zip chromium_src-58f343515fad33fa6fe096c8049bd91743f76c4e.tar.gz chromium_src-58f343515fad33fa6fe096c8049bd91743f76c4e.tar.bz2 |
Move app/mac/ files to ui/gfx/mac/ directory.
BUG=72317
TEST=None
R=rsesek@chromium.org
Review URL: http://codereview.chromium.org/7200045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webcursor_mac.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webcursor_mac.mm b/webkit/glue/webcursor_mac.mm index fad30e4..8c72da2 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]; |