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

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

Issue 16421003: [Sync] Add logic to reassociate tab nodes after restart. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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.cc
diff --git a/chrome/browser/android/tab_android.cc b/chrome/browser/android/tab_android.cc
index f40622656291deebbc6b4ca33f961a147cdb02af..01187f624ea2eeda4aae977fd0be2bad892a02de 100644
--- a/chrome/browser/android/tab_android.cc
+++ b/chrome/browser/android/tab_android.cc
@@ -138,3 +138,10 @@ void TabAndroid::RunExternalProtocolDialog(const GURL& url) {
bool TabAndroid::RegisterTabAndroid(JNIEnv* env) {
return RegisterNativesImpl(env);
}
+
+int64 TabAndroid::GetSyncId() const {
Yaron 2013/06/07 17:08:35 This class is abstract anyway. Just mark as pure v
shashi 2013/06/11 19:15:06 Done.
+ NOTIMPLEMENTED();
+ return -1;
+}
+
+void TabAndroid::SetSyncId(int64 sync_id) { NOTIMPLEMENTED(); }

Powered by Google App Engine
This is Rietveld 408576698