| Index: content/public/android/java/src/org/chromium/content/browser/input/PastePopupMenu.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/input/PastePopupMenu.java b/content/public/android/java/src/org/chromium/content/browser/input/PastePopupMenu.java
|
| index 8b91ca32b4f0954673c5feecd26ad904aa6ccf1d..15d64eb91779039dae4b73a2e06b6efd557c5708 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/input/PastePopupMenu.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/input/PastePopupMenu.java
|
| @@ -4,6 +4,8 @@
|
|
|
| package org.chromium.content.browser.input;
|
|
|
| +import android.graphics.Rect;
|
| +
|
| /**
|
| * Paste popup implementation based on TextView.PastePopupMenu.
|
| */
|
| @@ -44,9 +46,9 @@ public interface PastePopupMenu {
|
| }
|
|
|
| /**
|
| - * Shows the paste popup at an appropriate location relative to the specified position.
|
| + * Shows the paste popup at an appropriate location relative to the specified selection.
|
| */
|
| - public void show(int x, int y);
|
| + public void show(Rect selectionRect);
|
|
|
| /**
|
| * Hides the paste popup.
|
|
|