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

Unified Diff: ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.cc

Issue 2027943002: [WIP] Make content_shell run under Wayland Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.cc
diff --git a/ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.cc b/ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f207eecee732eb57b527d992af176d2c81fb98eb
--- /dev/null
+++ b/ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.cc
@@ -0,0 +1,49 @@
+// Copyright 2016 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 "ui/views/widget/desktop_aura/desktop_drag_drop_client_wayland.h"
+
+#include "ui/base/dragdrop/drag_drop_types.h"
+#include "ui/base/dragdrop/drop_target_event.h"
+
+namespace views {
+
+DesktopDragDropClientWayland::DesktopDragDropClientWayland(
+ aura::Window* root_window) {
+ NOTIMPLEMENTED();
+}
+
+DesktopDragDropClientWayland::~DesktopDragDropClientWayland() {
+}
+
+int DesktopDragDropClientWayland::StartDragAndDrop(
+ const ui::OSExchangeData& data,
+ aura::Window* root_window,
+ aura::Window* source_window,
+ const gfx::Point& root_location,
+ int operation,
+ ui::DragDropTypes::DragEventSource source) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void DesktopDragDropClientWayland::DragUpdate(aura::Window* target,
+ const ui::LocatedEvent& event) {
+ NOTIMPLEMENTED();
+}
+
+void DesktopDragDropClientWayland::Drop(aura::Window* target,
+ const ui::LocatedEvent& event) {
+ NOTIMPLEMENTED();
+}
+
+void DesktopDragDropClientWayland::DragCancel() {
+ NOTIMPLEMENTED();
+}
+
+bool DesktopDragDropClientWayland::IsDragDropInProgress() {
+ return false;
+}
+
+} // namespace views

Powered by Google App Engine
This is Rietveld 408576698