| Index: chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| index d3a33e6bda8ab3a391d142ccb6e84d2a2dd0df45..7802fe471d7dd1a591b3f9ed94c2d7fad7c3cb2f 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| @@ -6,7 +6,6 @@ package org.chromium.chrome.browser;
|
|
|
| import org.chromium.base.CalledByNative;
|
| import org.chromium.chrome.browser.profiles.Profile;
|
| -import org.chromium.ui.WindowOpenDisposition;
|
|
|
| import java.util.ArrayList;
|
| import java.util.List;
|
| @@ -95,18 +94,6 @@ public class RecentlyClosedBridge {
|
| return received ? tabs : null;
|
| }
|
|
|
| - // TODO(newt): delete this once all callers are using the new method below.
|
| - /**
|
| - * Opens a recently closed tab in the current tab.
|
| - *
|
| - * @param tab The current Tab.
|
| - * @param recentTab The RecentlyClosedTab to open.
|
| - * @return Whether the tab was successfully opened.
|
| - */
|
| - public boolean openRecentlyClosedTab(Tab tab, RecentlyClosedTab recentTab) {
|
| - return openRecentlyClosedTab(tab, recentTab, WindowOpenDisposition.CURRENT_TAB);
|
| - }
|
| -
|
| /**
|
| * Opens a recently closed tab in the current tab or a new tab. If opened in the current tab,
|
| * the current tab's entire history is replaced.
|
|
|