| 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 8e659cda3716b080c1cb6017f2230eb283a267ef..97d35efe8b2127fbeffe1a9bf7c4cd04caa6f055 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
|
| @@ -154,6 +154,15 @@ public interface WebContents extends Parcelable {
|
| void selectWordAroundCaret();
|
|
|
| /**
|
| + * Adjusts the selection starting and ending points by the given amount.
|
| + * A negative amount moves the selection towards the beginning of the document, a positive
|
| + * amount moves the selection towards the end of the document.
|
| + * @param startAdjust The amount to adjust the start of the selection.
|
| + * @param endAdjust The amount to adjust the end of the selection.
|
| + */
|
| + public void moveSelectionByCharacterOffset(int startAdjust, int endAdjust);
|
| +
|
| + /**
|
| * Get the URL of the current page.
|
| *
|
| * @return The URL of the current page.
|
|
|