OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include <list> | 10 #include <list> |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 base::android::ScopedJavaLocalRef<jbyteArray> GetCertificate( | 134 base::android::ScopedJavaLocalRef<jbyteArray> GetCertificate( |
135 JNIEnv* env, | 135 JNIEnv* env, |
136 const base::android::JavaParamRef<jobject>& obj); | 136 const base::android::JavaParamRef<jobject>& obj); |
137 void RequestNewHitTestDataAt(JNIEnv* env, | 137 void RequestNewHitTestDataAt(JNIEnv* env, |
138 const base::android::JavaParamRef<jobject>& obj, | 138 const base::android::JavaParamRef<jobject>& obj, |
139 jfloat x, | 139 jfloat x, |
140 jfloat y, | 140 jfloat y, |
141 jfloat touch_major); | 141 jfloat touch_major); |
142 void UpdateLastHitTestData(JNIEnv* env, | 142 void UpdateLastHitTestData(JNIEnv* env, |
143 const base::android::JavaParamRef<jobject>& obj); | 143 const base::android::JavaParamRef<jobject>& obj); |
144 void OnPhysicalBackingSizeChanged( | |
Khushal
2017/05/04 00:01:22
Not used anymore?
Jinsuk Kim
2017/05/08 07:40:44
Removed.
| |
145 JNIEnv* env, | |
146 const base::android::JavaParamRef<jobject>& obj, | |
147 jint width, | |
148 jint height); | |
144 void OnSizeChanged(JNIEnv* env, | 149 void OnSizeChanged(JNIEnv* env, |
145 const base::android::JavaParamRef<jobject>& obj, | 150 const base::android::JavaParamRef<jobject>& obj, |
146 int w, | 151 int w, |
147 int h, | 152 int h, |
148 int ow, | 153 int ow, |
149 int oh); | 154 int oh); |
150 void SetViewVisibility(JNIEnv* env, | 155 void SetViewVisibility(JNIEnv* env, |
151 const base::android::JavaParamRef<jobject>& obj, | 156 const base::android::JavaParamRef<jobject>& obj, |
152 bool visible); | 157 bool visible); |
153 void SetWindowVisibility(JNIEnv* env, | 158 void SetWindowVisibility(JNIEnv* env, |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
420 bool renderer_priority_waived_when_not_visible_; | 425 bool renderer_priority_waived_when_not_visible_; |
421 | 426 |
422 DISALLOW_COPY_AND_ASSIGN(AwContents); | 427 DISALLOW_COPY_AND_ASSIGN(AwContents); |
423 }; | 428 }; |
424 | 429 |
425 bool RegisterAwContents(JNIEnv* env); | 430 bool RegisterAwContents(JNIEnv* env); |
426 | 431 |
427 } // namespace android_webview | 432 } // namespace android_webview |
428 | 433 |
429 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 434 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ |
OLD | NEW |