From d2e72982e075c7e253892338ca4deca6ecb97413 Mon Sep 17 00:00:00 2001 From: "peter@chromium.org" Date: Tue, 10 Jan 2012 12:40:14 +0000 Subject: Add Android stubs for webplugin_delegate_impl and webcursor BUG= TEST= Review URL: http://codereview.chromium.org/9022010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117026 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/webcursor_android.cc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 webkit/glue/webcursor_android.cc (limited to 'webkit/glue/webcursor_android.cc') diff --git a/webkit/glue/webcursor_android.cc b/webkit/glue/webcursor_android.cc new file mode 100644 index 0000000..774133b --- /dev/null +++ b/webkit/glue/webcursor_android.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "webkit/glue/webcursor.h" + +#include "base/logging.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" + +void WebCursor::InitPlatformData() { +} + +bool WebCursor::SerializePlatformData(Pickle* pickle) const { + return true; +} + +bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) { + return true; +} + +bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { + return true; +} + +void WebCursor::CleanupPlatformData() { +} + +void WebCursor::CopyPlatformData(const WebCursor& other) { +} -- cgit v1.1