| 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 | 
|  |