Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: webkit/glue/webcursor_aurawin.cc

Issue 9463003: aura-x11: Add custom web cursor support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 8 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_aura.cc ('k') | webkit/glue/webcursor_aurax11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "webkit/glue/webcursor.h"
6
7 #include <windows.h>
8
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
10
11 const ui::PlatformCursor WebCursor::GetPlatformCursor() {
12 // TODO(winguru):
13 return LoadCursor(NULL, IDC_ARROW);
14 }
15
16 void WebCursor::InitPlatformData() {
17 }
18
19 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
20 return true;
21 }
22
23 bool WebCursor::DeserializePlatformData(PickleIterator* iter) {
24 return true;
25 }
26
27 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
28 return true;
29 }
30
31 void WebCursor::CleanupPlatformData() {
32 }
33
34 void WebCursor::CopyPlatformData(const WebCursor& other) {
35 }
OLDNEW
« no previous file with comments | « webkit/glue/webcursor_aura.cc ('k') | webkit/glue/webcursor_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698