| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 jfloat touch_major_1, | 102 jfloat touch_major_1, |
| 103 jfloat touch_minor_0, | 103 jfloat touch_minor_0, |
| 104 jfloat touch_minor_1, | 104 jfloat touch_minor_1, |
| 105 jfloat orientation_0, | 105 jfloat orientation_0, |
| 106 jfloat orientation_1, | 106 jfloat orientation_1, |
| 107 jfloat raw_pos_x, | 107 jfloat raw_pos_x, |
| 108 jfloat raw_pos_y, | 108 jfloat raw_pos_y, |
| 109 jint android_tool_type_0, | 109 jint android_tool_type_0, |
| 110 jint android_tool_type_1, | 110 jint android_tool_type_1, |
| 111 jint android_button_state, | 111 jint android_button_state, |
| 112 jint android_meta_state, |
| 112 jboolean is_touch_handle_event); | 113 jboolean is_touch_handle_event); |
| 113 jboolean SendMouseMoveEvent(JNIEnv* env, | 114 jboolean SendMouseMoveEvent(JNIEnv* env, |
| 114 jobject obj, | 115 jobject obj, |
| 115 jlong time_ms, | 116 jlong time_ms, |
| 116 jfloat x, | 117 jfloat x, |
| 117 jfloat y); | 118 jfloat y); |
| 118 jboolean SendMouseWheelEvent(JNIEnv* env, | 119 jboolean SendMouseWheelEvent(JNIEnv* env, |
| 119 jobject obj, | 120 jobject obj, |
| 120 jlong time_ms, | 121 jlong time_ms, |
| 121 jfloat x, | 122 jfloat x, |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 java_bridge_dispatcher_host_; | 345 java_bridge_dispatcher_host_; |
| 345 | 346 |
| 346 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 347 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
| 347 }; | 348 }; |
| 348 | 349 |
| 349 bool RegisterContentViewCore(JNIEnv* env); | 350 bool RegisterContentViewCore(JNIEnv* env); |
| 350 | 351 |
| 351 } // namespace content | 352 } // namespace content |
| 352 | 353 |
| 353 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 354 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| OLD | NEW |