- add sources.
[platform/framework/web/crosswalk.git] / src / webkit / common / cursors / webcursor_null.cc
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/common/cursors/webcursor.h"
6
7 const ui::PlatformCursor WebCursor::GetPlatformCursor() {
8   return NULL;
9 }
10
11 void WebCursor::SetDisplayInfo(const gfx::Display& display) {
12   return;
13 }
14
15 void WebCursor::InitPlatformData() {
16 }
17
18 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
19   return true;
20 }
21
22 bool WebCursor::DeserializePlatformData(PickleIterator* iter) {
23   return true;
24 }
25
26 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
27   return true;
28 }
29
30 void WebCursor::CleanupPlatformData() {
31 }
32
33 void WebCursor::CopyPlatformData(const WebCursor& other) {
34 }