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

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

Issue 2984453002: Add Browser Actions tab model selector and open a tab through it if ChromeTabbedActivity is not ava…
Patch Set: Sync changes. Created 3 years, 4 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/tabmodel/TabPersistentStore.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabPersistentStore.java b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabPersistentStore.java
index c610dd19c231fc971716a45216c643f5b7573fb2..b4970aa28541884b4ea41a3f51485349652b5c05 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabPersistentStore.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabPersistentStore.java
@@ -110,29 +110,29 @@ public class TabPersistentStore extends TabPersister {
* been loaded.
* @param tabCountAtStartup How many tabs there are in the TabModels.
*/
- void onInitialized(int tabCountAtStartup) {}
+ public void onInitialized(int tabCountAtStartup) {}
/**
* Called when details about a Tab are read from the metadata file.
*/
- void onDetailsRead(int index, int id, String url,
- boolean isStandardActiveIndex, boolean isIncognitoActiveIndex) {}
+ public void onDetailsRead(int index, int id, String url, boolean isStandardActiveIndex,
+ boolean isIncognitoActiveIndex) {}
/**
* To be called when the TabStates have all been loaded.
*/
- void onStateLoaded() {}
+ public void onStateLoaded() {}
/**
* To be called when the TabState from another instance has been merged.
*/
- void onStateMerged() {}
+ public void onStateMerged() {}
/**
* Called when the metadata file has been saved out asynchronously.
* This currently does not get called when the metadata file is saved out on the UI thread.
*/
- void onMetadataSavedAsynchronously() {}
+ public void onMetadataSavedAsynchronously() {}
}
/** Stores information about a TabModel. */

Powered by Google App Engine
This is Rietveld 408576698