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

Unified Diff: chrome/browser/android/tab_android.h

Issue 16421003: [Sync] Add logic to reassociate tab nodes after restart. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win compile, rename uint -> size_t. Created 7 years, 6 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/browser/android/tab_android.h
diff --git a/chrome/browser/android/tab_android.h b/chrome/browser/android/tab_android.h
index 4e5f1e809c66c37525a57cd15a826311108c2bff..8b79c265f298c216d1d7c676de9948515d39d857 100644
--- a/chrome/browser/android/tab_android.h
+++ b/chrome/browser/android/tab_android.h
@@ -81,7 +81,12 @@ class TabAndroid {
// derived classes may remove their implementation first.
virtual void RunExternalProtocolDialog(const GURL& url);
+ // Used by sync to get/set the sync id of tab.
+ virtual int64 GetSyncId() const = 0;
+ virtual void SetSyncId(int64 sync_id) = 0;
+
static bool RegisterTabAndroid(JNIEnv* env);
+
protected:
virtual ~TabAndroid();

Powered by Google App Engine
This is Rietveld 408576698