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

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

Issue 2727203003: Revert of Make SelectionPopupController.ShowPastePopup only be triggered by Blink (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0170a268c63c055a0cbf64a323c583c47dc946fd..22d5e911de6f140d120ae69d2c02c1a4436bafd2 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
@@ -78,37 +78,31 @@
*/
void stop();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Cut the selected content.
*/
void cut();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Copy the selected content.
*/
void copy();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Paste content from the clipboard.
*/
void paste();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Replace the selected text with the {@code word}.
*/
void replace(String word);
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Select all content.
*/
void selectAll();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Clear the selection. This includes the cursor which is a zero-sized selection, and keyboard
* will be hidden as a result.
@@ -125,17 +119,10 @@
*/
void onShow();
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
/**
* Removes handles used in text selection.
*/
void dismissTextHandles();
-
- // TODO (amaralp): Only used in content. Should be moved out of public interface.
- /**
- * Shows paste popup menu at point
- */
- void showContextMenuAtPoint(int x, int y);
/**
* Suspends all media players for this WebContents. Note: There may still
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698