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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/RecentlyClosedBridge.java

Issue 148523013: [Android] Rename TabBase to Tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2014_01_22_tabbase
Patch Set: sync Created 6 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
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);
}

Powered by Google App Engine
This is Rietveld 408576698