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

Unified Diff: ui/events/android/drag_event_android.cc

Issue 2896993002: Route OnDragEvent through ViewAndroid tree (Closed)
Patch Set: +ui/base Created 3 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
« no previous file with comments | « ui/events/android/drag_event_android.h ('k') | ui/events/android/motion_event_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/android/drag_event_android.cc
diff --git a/ui/events/android/drag_event_android.cc b/ui/events/android/drag_event_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e5a5e30b69e9993aa42fafbd9011139d97675412
--- /dev/null
+++ b/ui/events/android/drag_event_android.cc
@@ -0,0 +1,51 @@
+// Copyright 2017 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/events/android/drag_event_android.h"
+#include "base/android/jni_android.h"
+
+using base::android::ScopedJavaLocalRef;
+using base::android::AttachCurrentThread;
+
+namespace ui {
+
+DragEventAndroid::DragEventAndroid(
+ JNIEnv* env,
+ int action,
+ const gfx::PointF& location,
+ const gfx::PointF& screen_location,
+ const std::vector<base::string16>& mime_types,
+ jstring content)
+ : action_(action),
+ location_(location),
+ screen_location_(screen_location),
+ mime_types_(mime_types) {
+ content_.Reset(env, content);
+}
+
+DragEventAndroid::~DragEventAndroid() {}
+
+const gfx::Point DragEventAndroid::GetLocation() const {
+ return gfx::ToFlooredPoint(location_);
+}
+
+const gfx::Point DragEventAndroid::GetScreenLocation() const {
+ return gfx::ToFlooredPoint(screen_location_);
+}
+
+ScopedJavaLocalRef<jstring> DragEventAndroid::GetJavaContent() const {
+ return ScopedJavaLocalRef<jstring>(content_);
+}
+
+std::unique_ptr<DragEventAndroid> DragEventAndroid::CreateFor(
+ const gfx::PointF& new_location) const {
+ gfx::PointF new_screen_location =
+ new_location + (screen_location_f() - location_f());
+ JNIEnv* env = AttachCurrentThread();
+ return std::unique_ptr<DragEventAndroid>(
+ new DragEventAndroid(env, action_, new_location, new_screen_location,
+ mime_types_, content_.obj()));
+}
+
+} // namespace ui
« no previous file with comments | « ui/events/android/drag_event_android.h ('k') | ui/events/android/motion_event_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698