Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: webkit/glue/webcursor_mac.mm

Issue 15937016: Update refernces to Blink's Platform API (webkit) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webcursor.cc ('k') | webkit/glue/webdropdata.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/glue/webcursor.h" 5 #include "webkit/glue/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/memory/scoped_nsobject.h" 12 #include "base/memory/scoped_nsobject.h"
13 #include "grit/webkit_chromium_resources.h" 13 #include "grit/webkit_chromium_resources.h"
14 #include "skia/ext/skia_utils_mac.h" 14 #include "skia/ext/skia_utils_mac.h"
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" 15 #include "third_party/WebKit/public/platform/WebImage.h"
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" 16 #include "third_party/WebKit/public/platform/WebSize.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
18 #include "ui/base/resource/resource_bundle.h" 18 #include "ui/base/resource/resource_bundle.h"
19 #include "ui/gfx/point_conversions.h" 19 #include "ui/gfx/point_conversions.h"
20 #include "ui/gfx/size_conversions.h" 20 #include "ui/gfx/size_conversions.h"
21 21
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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 return true; 419 return true;
420 } 420 }
421 421
422 void WebCursor::CleanupPlatformData() { 422 void WebCursor::CleanupPlatformData() {
423 return; 423 return;
424 } 424 }
425 425
426 void WebCursor::CopyPlatformData(const WebCursor& other) { 426 void WebCursor::CopyPlatformData(const WebCursor& other) {
427 return; 427 return;
428 } 428 }
OLDNEW
« no previous file with comments | « webkit/glue/webcursor.cc ('k') | webkit/glue/webdropdata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698