Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Unified Diff: webkit/glue/webcursor_x11.cc

Issue 8095016: Additional build fixes for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing file Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/glue/webcursor_x11.cc
diff --git a/webkit/glue/webcursor_x11.cc b/webkit/glue/webcursor_x11.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d6d4ebd9eeda07dda5a04cebba5cca82e532c3c4
--- /dev/null
+++ b/webkit/glue/webcursor_x11.cc
@@ -0,0 +1,32 @@
+// Copyright (c) 2011 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"
+
+// TODO(davemoore) Need to implement X11 cursors.
+
+gfx::NativeCursor WebCursor::GetNativeCursor() {
+ return NULL;
+}
+
+void WebCursor::InitPlatformData() {
+}
oshima 2011/09/30 22:47:46 NOTIMPLEMENTED() so that we don't miss it.
+
+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) {
+}

Powered by Google App Engine
This is Rietveld 408576698