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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/android/tab_android.h" 5 #include "chrome/browser/android/tab_android.h"
6 6
7 #include "chrome/browser/browser_process.h" 7 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 8 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
9 #include "chrome/browser/extensions/tab_helper.h" 9 #include "chrome/browser/extensions/tab_helper.h"
10 #include "chrome/browser/favicon/favicon_tab_helper.h" 10 #include "chrome/browser/favicon/favicon_tab_helper.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 ToolbarModel::SecurityLevel TabAndroid::GetSecurityLevel() { 131 ToolbarModel::SecurityLevel TabAndroid::GetSecurityLevel() {
132 return ToolbarModelImpl::GetSecurityLevelForWebContents(GetWebContents()); 132 return ToolbarModelImpl::GetSecurityLevelForWebContents(GetWebContents());
133 } 133 }
134 134
135 void TabAndroid::RunExternalProtocolDialog(const GURL& url) { 135 void TabAndroid::RunExternalProtocolDialog(const GURL& url) {
136 } 136 }
137 137
138 bool TabAndroid::RegisterTabAndroid(JNIEnv* env) { 138 bool TabAndroid::RegisterTabAndroid(JNIEnv* env) {
139 return RegisterNativesImpl(env); 139 return RegisterNativesImpl(env);
140 } 140 }
141
142 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.
143 NOTIMPLEMENTED();
144 return -1;
145 }
146
147 void TabAndroid::SetSyncId(int64 sync_id) { NOTIMPLEMENTED(); }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698