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

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: Created 5 years, 6 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 jfloat pos_x_1, 96 jfloat pos_x_1,
97 jfloat pos_y_1, 97 jfloat pos_y_1,
98 jint pointer_id_0, 98 jint pointer_id_0,
99 jint pointer_id_1, 99 jint pointer_id_1,
100 jfloat touch_major_0, 100 jfloat touch_major_0,
101 jfloat touch_major_1, 101 jfloat touch_major_1,
102 jfloat touch_minor_0, 102 jfloat touch_minor_0,
103 jfloat touch_minor_1, 103 jfloat touch_minor_1,
104 jfloat orientation_0, 104 jfloat orientation_0,
105 jfloat orientation_1, 105 jfloat orientation_1,
106 jfloat tilt_0,
107 jfloat tilt_1,
106 jfloat raw_pos_x, 108 jfloat raw_pos_x,
107 jfloat raw_pos_y, 109 jfloat raw_pos_y,
108 jint android_tool_type_0, 110 jint android_tool_type_0,
109 jint android_tool_type_1, 111 jint android_tool_type_1,
110 jint android_button_state, 112 jint android_button_state,
111 jint android_meta_state, 113 jint android_meta_state,
112 jboolean is_touch_handle_event); 114 jboolean is_touch_handle_event);
113 jboolean SendMouseMoveEvent(JNIEnv* env, 115 jboolean SendMouseMoveEvent(JNIEnv* env,
114 jobject obj, 116 jobject obj,
115 jlong time_ms, 117 jlong time_ms,
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 370 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
369 371
370 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 372 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
371 }; 373 };
372 374
373 bool RegisterContentViewCore(JNIEnv* env); 375 bool RegisterContentViewCore(JNIEnv* env);
374 376
375 } // namespace content 377 } // namespace content
376 378
377 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 379 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/content_view_core_impl.cc » ('j') | ui/events/blink/blink_event_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698