Update V8 to version 4.6.72.
[chromium-blink-merge.git] / content / common / cursors / webcursor_android.cc
bloba932b270ddbc5b408c9d64ef6b46d8de677a4ffb
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"
10 namespace content {
12 gfx::NativeCursor WebCursor::GetNativeCursor() {
13 return gfx::kNullCursor;
16 #if defined(USE_AURA)
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) {
22 #endif
24 void WebCursor::InitPlatformData() {
27 bool WebCursor::SerializePlatformData(base::Pickle* pickle) const {
28 return true;
31 bool WebCursor::DeserializePlatformData(base::PickleIterator* iter) {
32 return true;
35 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
36 return true;
39 void WebCursor::CleanupPlatformData() {
42 void WebCursor::CopyPlatformData(const WebCursor& other) {
45 } // namespace content