| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/glue/webcursor.h" | 5 #include "webkit/glue/webcursor.h" |
| 6 | 6 |
| 7 #import <AppKit/AppKit.h> | 7 #import <AppKit/AppKit.h> |
| 8 #include <Carbon/Carbon.h> | 8 #include <Carbon/Carbon.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/mac/mac_util.h" | 11 #include "base/mac/mac_util.h" |
| 12 #include "base/mac/scoped_cftyperef.h" | 12 #include "base/mac/scoped_cftyperef.h" |
| 13 #include "base/memory/scoped_nsobject.h" | 13 #include "base/memory/scoped_nsobject.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebImage.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebImage.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSize.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" |
| 17 #include "ui/gfx/mac/nsimage_cache.h" | 17 #include "ui/gfx/mac/nsimage_cache.h" |
| 18 | 18 |
| 19 #if WEBKIT_USING_SKIA | 19 #if WEBKIT_USING_SKIA |
| 20 #include "skia/ext/skia_utils_mac.h" | 20 #include "skia/ext/skia_utils_mac.h" |
| 21 #endif | 21 #endif |
| 22 | 22 |
| 23 using WebKit::WebCursorInfo; | 23 using WebKit::WebCursorInfo; |
| 24 using WebKit::WebImage; | 24 using WebKit::WebImage; |
| 25 using WebKit::WebSize; | 25 using WebKit::WebSize; |
| 26 | 26 |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 return true; | 472 return true; |
| 473 } | 473 } |
| 474 | 474 |
| 475 void WebCursor::CleanupPlatformData() { | 475 void WebCursor::CleanupPlatformData() { |
| 476 return; | 476 return; |
| 477 } | 477 } |
| 478 | 478 |
| 479 void WebCursor::CopyPlatformData(const WebCursor& other) { | 479 void WebCursor::CopyPlatformData(const WebCursor& other) { |
| 480 return; | 480 return; |
| 481 } | 481 } |
| OLD | NEW |