| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 jboolean SendMouseEvent(JNIEnv* env, | 123 jboolean SendMouseEvent(JNIEnv* env, |
| 124 const base::android::JavaParamRef<jobject>& obj, | 124 const base::android::JavaParamRef<jobject>& obj, |
| 125 jlong time_ms, | 125 jlong time_ms, |
| 126 jint android_action, | 126 jint android_action, |
| 127 jfloat x, | 127 jfloat x, |
| 128 jfloat y, | 128 jfloat y, |
| 129 jint pointer_id, | 129 jint pointer_id, |
| 130 jfloat pressure, | 130 jfloat pressure, |
| 131 jfloat orientation, | 131 jfloat orientation, |
| 132 jfloat tilt, | 132 jfloat tilt, |
| 133 jint android_changed_button, | 133 jint android_action_button, |
| 134 jint android_button_state, | 134 jint android_button_state, |
| 135 jint android_meta_state, | 135 jint android_meta_state, |
| 136 jint tool_type); | 136 jint tool_type); |
| 137 jboolean SendMouseWheelEvent(JNIEnv* env, | 137 jboolean SendMouseWheelEvent(JNIEnv* env, |
| 138 const base::android::JavaParamRef<jobject>& obj, | 138 const base::android::JavaParamRef<jobject>& obj, |
| 139 jlong time_ms, | 139 jlong time_ms, |
| 140 jfloat x, | 140 jfloat x, |
| 141 jfloat y, | 141 jfloat y, |
| 142 jfloat ticks_x, | 142 jfloat ticks_x, |
| 143 jfloat ticks_y, | 143 jfloat ticks_y, |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; | 451 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; |
| 452 | 452 |
| 453 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 453 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
| 454 }; | 454 }; |
| 455 | 455 |
| 456 bool RegisterContentViewCore(JNIEnv* env); | 456 bool RegisterContentViewCore(JNIEnv* env); |
| 457 | 457 |
| 458 } // namespace content | 458 } // namespace content |
| 459 | 459 |
| 460 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 460 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| OLD | NEW |