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

Side by Side Diff: content/browser/android/content_view_core_impl.h

Issue 1187273004: Pass MotionEvent tilt angles to Blink on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 jfloat pos_x_1, 98 jfloat pos_x_1,
99 jfloat pos_y_1, 99 jfloat pos_y_1,
100 jint pointer_id_0, 100 jint pointer_id_0,
101 jint pointer_id_1, 101 jint pointer_id_1,
102 jfloat touch_major_0, 102 jfloat touch_major_0,
103 jfloat touch_major_1, 103 jfloat touch_major_1,
104 jfloat touch_minor_0, 104 jfloat touch_minor_0,
105 jfloat touch_minor_1, 105 jfloat touch_minor_1,
106 jfloat orientation_0, 106 jfloat orientation_0,
107 jfloat orientation_1, 107 jfloat orientation_1,
108 jfloat tilt_0,
109 jfloat tilt_1,
108 jfloat raw_pos_x, 110 jfloat raw_pos_x,
109 jfloat raw_pos_y, 111 jfloat raw_pos_y,
110 jint android_tool_type_0, 112 jint android_tool_type_0,
111 jint android_tool_type_1, 113 jint android_tool_type_1,
112 jint android_button_state, 114 jint android_button_state,
113 jint android_meta_state, 115 jint android_meta_state,
114 jboolean is_touch_handle_event); 116 jboolean is_touch_handle_event);
115 jboolean SendMouseMoveEvent(JNIEnv* env, 117 jboolean SendMouseMoveEvent(JNIEnv* env,
116 jobject obj, 118 jobject obj,
117 jlong time_ms, 119 jlong time_ms,
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 391 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
390 392
391 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 393 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
392 }; 394 };
393 395
394 bool RegisterContentViewCore(JNIEnv* env); 396 bool RegisterContentViewCore(JNIEnv* env);
395 397
396 } // namespace content 398 } // namespace content
397 399
398 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 400 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698