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

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

Issue 8095016: Additional build fixes for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing file Created 9 years, 2 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "webkit/glue/webcursor.h"
6
7 // TODO(davemoore) Need to implement X11 cursors.
8
9 gfx::NativeCursor WebCursor::GetNativeCursor() {
10 return NULL;
11 }
12
13 void WebCursor::InitPlatformData() {
14 }
oshima 2011/09/30 22:47:46 NOTIMPLEMENTED() so that we don't miss it.
15
16 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
17 return true;
18 }
19
20 bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) {
21 return true;
22 }
23
24 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
25 return true;
26 }
27
28 void WebCursor::CleanupPlatformData() {
29 }
30
31 void WebCursor::CopyPlatformData(const WebCursor& other) {
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698