OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/cursors/webcursor.h" | 5 #include "webkit/common/cursors/webcursor.h" |
6 | 6 |
7 #import <AppKit/AppKit.h> | 7 #import <AppKit/AppKit.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/mac/mac_util.h" | 10 #include "base/mac/mac_util.h" |
11 #include "base/mac/scoped_cftyperef.h" | 11 #include "base/mac/scoped_cftyperef.h" |
12 #include "base/mac/scoped_nsobject.h" | |
13 #include "grit/webkit_chromium_resources.h" | 12 #include "grit/webkit_chromium_resources.h" |
14 #include "skia/ext/skia_utils_mac.h" | 13 #include "skia/ext/skia_utils_mac.h" |
15 #include "third_party/WebKit/public/platform/WebSize.h" | 14 #include "third_party/WebKit/public/platform/WebSize.h" |
16 #include "third_party/WebKit/public/web/WebCursorInfo.h" | 15 #include "third_party/WebKit/public/web/WebCursorInfo.h" |
17 #include "ui/base/resource/resource_bundle.h" | 16 #include "ui/base/resource/resource_bundle.h" |
18 #include "ui/gfx/point_conversions.h" | 17 #include "ui/gfx/point_conversions.h" |
19 #include "ui/gfx/size_conversions.h" | 18 #include "ui/gfx/size_conversions.h" |
20 | 19 |
21 | 20 |
22 using WebKit::WebCursorInfo; | 21 using WebKit::WebCursorInfo; |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 return true; | 415 return true; |
417 } | 416 } |
418 | 417 |
419 void WebCursor::CleanupPlatformData() { | 418 void WebCursor::CleanupPlatformData() { |
420 return; | 419 return; |
421 } | 420 } |
422 | 421 |
423 void WebCursor::CopyPlatformData(const WebCursor& other) { | 422 void WebCursor::CopyPlatformData(const WebCursor& other) { |
424 return; | 423 return; |
425 } | 424 } |
OLD | NEW |