summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webcursor_android.cc
diff options
context:
space:
mode:
authorpeter@chromium.org <peter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-10 12:40:14 +0000
committerpeter@chromium.org <peter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-10 12:40:14 +0000
commitd2e72982e075c7e253892338ca4deca6ecb97413 (patch)
treefaa9dd9d5baa7de25a36f866f8581be7f2b28602 /webkit/glue/webcursor_android.cc
parent56d8ebace0e0a6df51e41c957b3a1ede0fb72cc4 (diff)
downloadchromium_src-d2e72982e075c7e253892338ca4deca6ecb97413.zip
chromium_src-d2e72982e075c7e253892338ca4deca6ecb97413.tar.gz
chromium_src-d2e72982e075c7e253892338ca4deca6ecb97413.tar.bz2
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
Diffstat (limited to 'webkit/glue/webcursor_android.cc')
-rw-r--r--webkit/glue/webcursor_android.cc29
1 files changed, 29 insertions, 0 deletions
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) {
+}