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.
5 #include "content/common/cursors/webcursor.h"
7 #include "base/logging.h"
8 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
12 gfx::NativeCursor
WebCursor::GetNativeCursor() {
13 return gfx::kNullCursor
;
17 // In the future when we want to support cursors of various kinds in Aura on
18 // Android, we should switch to using webcursor_aura rather than add an
19 // implementation here.
20 void WebCursor::SetDisplayInfo(const gfx::Display
& display
) {
24 void WebCursor::InitPlatformData() {
27 bool WebCursor::SerializePlatformData(base::Pickle
* pickle
) const {
31 bool WebCursor::DeserializePlatformData(base::PickleIterator
* iter
) {
35 bool WebCursor::IsPlatformDataEqual(const WebCursor
& other
) const {
39 void WebCursor::CleanupPlatformData() {
42 void WebCursor::CopyPlatformData(const WebCursor
& other
) {
45 } // namespace content