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

Unified Diff: content/public/android/java/src/org/chromium/content_public/browser/WebContents.java

Issue 1923613002: Fix a nasty scroll bug for Chrome Now-on-tap feature. Also combine the code paths for Android Webvi… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 8 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: content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
diff --git a/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java b/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
index adb2e560a7933fedea8536b31ce14bbc98a523ef..b5bf43d9fcdc1649ec0ea9f593078f203b4bf27c 100644
--- a/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
+++ b/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
@@ -297,11 +297,8 @@ public interface WebContents extends Parcelable {
* using the callback
* @param callback The callback to be called when the snapshot is ready. The callback
* cannot be null.
- * @param offsetY The Physical on-screen Y offset amount below the top controls.
- * @param scrollX Horizontal scroll offset in physical pixels
*/
- void requestAccessibilitySnapshot(AccessibilitySnapshotCallback callback, float offsetY,
- float scrollX);
+ void requestAccessibilitySnapshot(AccessibilitySnapshotCallback callback);
/**
* Resumes the current media session.

Powered by Google App Engine
This is Rietveld 408576698