OLD | NEW |
---|---|
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 Loading... | |
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(); } | |
OLD | NEW |