OLD | NEW |
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 jint pointer_count, | 101 jint pointer_count, |
102 jint history_size, | 102 jint history_size, |
103 jint action_index, | 103 jint action_index, |
104 jfloat pos_x_0, | 104 jfloat pos_x_0, |
105 jfloat pos_y_0, | 105 jfloat pos_y_0, |
106 jfloat pos_x_1, | 106 jfloat pos_x_1, |
107 jfloat pos_y_1, | 107 jfloat pos_y_1, |
108 jint pointer_id_0, | 108 jint pointer_id_0, |
109 jint pointer_id_1, | 109 jint pointer_id_1, |
110 jfloat touch_major_0, | 110 jfloat touch_major_0, |
111 jfloat touch_major_1); | 111 jfloat touch_major_1, |
| 112 jint tool_type); |
112 jboolean SendMouseMoveEvent(JNIEnv* env, | 113 jboolean SendMouseMoveEvent(JNIEnv* env, |
113 jobject obj, | 114 jobject obj, |
114 jlong time_ms, | 115 jlong time_ms, |
115 jfloat x, | 116 jfloat x, |
116 jfloat y); | 117 jfloat y); |
117 jboolean SendMouseWheelEvent(JNIEnv* env, | 118 jboolean SendMouseWheelEvent(JNIEnv* env, |
118 jobject obj, | 119 jobject obj, |
119 jlong time_ms, | 120 jlong time_ms, |
120 jfloat x, | 121 jfloat x, |
121 jfloat y, | 122 jfloat y, |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 java_bridge_dispatcher_host_manager_; | 378 java_bridge_dispatcher_host_manager_; |
378 | 379 |
379 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 380 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
380 }; | 381 }; |
381 | 382 |
382 bool RegisterContentViewCore(JNIEnv* env); | 383 bool RegisterContentViewCore(JNIEnv* env); |
383 | 384 |
384 } // namespace content | 385 } // namespace content |
385 | 386 |
386 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 387 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
OLD | NEW |