Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwViewMethods.java

Issue 653633005: [WebView] Enable scrolling in fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/java/src/org/chromium/android_webview/AwViewMethods.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwViewMethods.java b/android_webview/java/src/org/chromium/android_webview/AwViewMethods.java
index e5031ad11f134a99808eee202b87b64f8dce6d88..02b360d2f042a04f605c24ad1af6ab34c0b982f7 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwViewMethods.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwViewMethods.java
@@ -112,4 +112,45 @@ interface AwViewMethods {
* @see android.view.View#onWindowVisibilityChanged
*/
void onWindowVisibilityChanged(int visibility);
+
+ /**
+ * @see android.view.View#onScrollChanged
+ */
+ void onContainerViewScrollChanged(int l, int t, int oldl, int oldt);
+
+ /**
+ * @see android.view.View#onOverScrolled
+ */
+ void onContainerViewOverScrolled(
+ int scrollX, int scrollY, boolean clampedX, boolean clampedY);
+
+ /**
+ * @see android.view.View#computeHorizontalScrollRange
+ */
+ int computeHorizontalScrollRange();
+
+ /**
+ * @see android.view.View#computeHorizontalScrollOffset
+ */
+ int computeHorizontalScrollOffset();
+
+ /**
+ * @see android.view.View#computeVerticalScrollRange
+ */
+ int computeVerticalScrollRange();
+
+ /**
+ * @see android.view.View#computeVerticalScrollOffset
+ */
+ int computeVerticalScrollOffset();
+
+ /**
+ * @see android.view.View#computeVerticalScrollExtent
+ */
+ int computeVerticalScrollExtent();
+
+ /**
+ * @see android.view.View#computeScroll
+ */
+ void computeScroll();
}

Powered by Google App Engine
This is Rietveld 408576698