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

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

Issue 110963003: Fixing all Java import ordering issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ReBaSe Created 7 years 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/AwScrollOffsetManager.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwScrollOffsetManager.java b/android_webview/java/src/org/chromium/android_webview/AwScrollOffsetManager.java
index be3001ad29999df000cadbd241146701c797b4dc..d212f04727e30acea9ac1f6615539df88e881eec 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwScrollOffsetManager.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwScrollOffsetManager.java
@@ -111,13 +111,17 @@ public class AwScrollOffsetManager {
}
//---------------------------------------------------------------------------------------------
- // Called when the scroll range changes. This needs to be the size of the on-screen content.
+ /**
+ * Called when the scroll range changes. This needs to be the size of the on-screen content.
+ */
public void setMaxScrollOffset(int width, int height) {
mMaxHorizontalScrollOffset = width;
mMaxVerticalScrollOffset = height;
}
- // Called when the physical size of the view changes.
+ /**
+ * Called when the physical size of the view changes.
+ */
public void setContainerViewSize(int width, int height) {
mContainerViewWidth = width;
mContainerViewHeight = height;
@@ -333,7 +337,7 @@ public class AwScrollOffsetManager {
}
/**
- * See {@link WebView#pageUp(boolean)}
+ * See {@link android.webkit.WebView#pageUp(boolean)}
*/
public boolean pageUp(boolean top) {
final int scrollX = mDelegate.getContainerViewScrollX();
@@ -353,7 +357,7 @@ public class AwScrollOffsetManager {
}
/**
- * See {@link WebView#pageDown(boolean)}
+ * See {@link android.webkit.WebView#pageDown(boolean)}
*/
public boolean pageDown(boolean bottom) {
final int scrollX = mDelegate.getContainerViewScrollX();
@@ -372,7 +376,7 @@ public class AwScrollOffsetManager {
}
/**
- * See {@link WebView#requestChildRectangleOnScreen(View, Rect, boolean)}
+ * See {@link android.webkit.WebView#requestChildRectangleOnScreen(View, Rect, boolean)}
*/
public boolean requestChildRectangleOnScreen(int childOffsetX, int childOffsetY, Rect rect,
boolean immediate) {

Powered by Google App Engine
This is Rietveld 408576698