| 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 6eb92f6f229e8dd5be037ff5b7b22376c24cd124..ce6bdb00386a5da2644d1fcba4cd5c03f5c36440 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java
|
| @@ -97,11 +97,11 @@ public class RecentlyClosedBridge {
|
| /**
|
| * Opens a recently closed tab in the current tab.
|
| *
|
| - * @param tab The current TabBase.
|
| + * @param tab The current Tab.
|
| * @param recentTab The RecentlyClosedTab to open.
|
| * @return Whether the tab was successfully opened.
|
| */
|
| - public boolean openRecentlyClosedTab(TabBase tab, RecentlyClosedTab recentTab) {
|
| + public boolean openRecentlyClosedTab(Tab tab, RecentlyClosedTab recentTab) {
|
| return nativeOpenRecentlyClosedTab(mNativeRecentlyClosedTabsBridge, tab, recentTab.id);
|
| }
|
|
|
| @@ -119,6 +119,6 @@ public class RecentlyClosedBridge {
|
| private native boolean nativeGetRecentlyClosedTabs(
|
| long nativeRecentlyClosedTabsBridge, List<RecentlyClosedTab> tabs, int maxTabCount);
|
| private native boolean nativeOpenRecentlyClosedTab(
|
| - long nativeRecentlyClosedTabsBridge, TabBase tab, int recentTabId);
|
| + long nativeRecentlyClosedTabsBridge, Tab tab, int recentTabId);
|
| private native void nativeClearRecentlyClosedTabs(long nativeRecentlyClosedTabsBridge);
|
| }
|
|
|