[Android WebView] Fix webview perf bot switchover to use org.chromium.webview_shell...
[chromium-blink-merge.git] / content / common / cursors / webcursor_android.cc
blob08be8b29816a85c5f59eeb9e0587de7cf16ba61f
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 void WebCursor::InitPlatformData() {
15 bool WebCursor::SerializePlatformData(base::Pickle* pickle) const {
16 return true;
19 bool WebCursor::DeserializePlatformData(base::PickleIterator* iter) {
20 return true;
23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
24 return true;
27 void WebCursor::CleanupPlatformData() {
30 void WebCursor::CopyPlatformData(const WebCursor& other) {
33 } // namespace content