Chromium Code Reviews| Index: content/public/android/java/src/org/chromium/content/browser/SelectionClient.java |
| diff --git a/content/public/android/java/src/org/chromium/content/browser/SelectionClient.java b/content/public/android/java/src/org/chromium/content/browser/SelectionClient.java |
| index 041cdcf4b53d8f62c3ec69b40308cd26a1a1b938..962be9fbdd35bec7460135ea0e6a616073bc07aa 100644 |
| --- a/content/public/android/java/src/org/chromium/content/browser/SelectionClient.java |
| +++ b/content/public/android/java/src/org/chromium/content/browser/SelectionClient.java |
| @@ -28,4 +28,12 @@ public interface SelectionClient { |
| * @param y The y coordinate of the tap. |
| */ |
| void showUnhandledTapUIIfNeeded(int x, int y); |
| + |
| + /** |
| + * Returns true if the SelectionClient can send information |
|
Ted C
2017/03/20 20:35:50
in java, you should wrap at 100 chars for comments
Tima Vaisburd
2017/03/21 02:07:02
Done.
|
| + * that can affect the content of the context menu (e.g. add |
| + * a new menu item). In this case an embedder might want to |
| + * wait for this info before taking further actions. |
| + */ |
| + boolean sendsMenuUpdates(); |
|
Ted C
2017/03/20 20:35:50
what menu is this referring to? Is this the actio
Tima Vaisburd
2017/03/21 02:07:02
I found my explanation confusing and rewrote it. I
|
| } |