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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 jint history_size, | 108 jint history_size, |
109 jint action_index, | 109 jint action_index, |
110 jfloat pos_x_0, | 110 jfloat pos_x_0, |
111 jfloat pos_y_0, | 111 jfloat pos_y_0, |
112 jfloat pos_x_1, | 112 jfloat pos_x_1, |
113 jfloat pos_y_1, | 113 jfloat pos_y_1, |
114 jint pointer_id_0, | 114 jint pointer_id_0, |
115 jint pointer_id_1, | 115 jint pointer_id_1, |
116 jfloat touch_major_0, | 116 jfloat touch_major_0, |
117 jfloat touch_major_1, | 117 jfloat touch_major_1, |
118 jfloat touch_minor_0, | |
119 jfloat touch_minor_1, | |
120 jfloat orientation_0, | |
121 jfloat orientation_1, | |
122 jfloat raw_pos_x, | 118 jfloat raw_pos_x, |
123 jfloat raw_pos_y, | 119 jfloat raw_pos_y, |
124 jint android_tool_type_0, | 120 jint android_tool_type_0, |
125 jint android_tool_type_1, | 121 jint android_tool_type_1, |
126 jint android_button_state, | 122 jint android_button_state, |
127 jboolean is_touch_handle_event); | 123 jboolean is_touch_handle_event); |
128 jboolean SendMouseMoveEvent(JNIEnv* env, | 124 jboolean SendMouseMoveEvent(JNIEnv* env, |
129 jobject obj, | 125 jobject obj, |
130 jlong time_ms, | 126 jlong time_ms, |
131 jfloat x, | 127 jfloat x, |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 java_bridge_dispatcher_host_; | 370 java_bridge_dispatcher_host_; |
375 | 371 |
376 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 372 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
377 }; | 373 }; |
378 | 374 |
379 bool RegisterContentViewCore(JNIEnv* env); | 375 bool RegisterContentViewCore(JNIEnv* env); |
380 | 376 |
381 } // namespace content | 377 } // namespace content |
382 | 378 |
383 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 379 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
OLD | NEW |