| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/ui/android/page_info/connection_info_popup_android.h" | 5 #include "chrome/browser/ui/android/page_info/connection_info_popup_android.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/android/jni_array.h" | 8 #include "base/android/jni_array.h" |
| 9 #include "base/android/jni_string.h" | 9 #include "base/android/jni_string.h" |
| 10 #include "chrome/browser/android/resource_mapper.h" | 10 #include "chrome/browser/android/resource_mapper.h" |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 const CookieInfoList& cookie_info_list) { | 182 const CookieInfoList& cookie_info_list) { |
| 183 NOTIMPLEMENTED(); | 183 NOTIMPLEMENTED(); |
| 184 } | 184 } |
| 185 | 185 |
| 186 void ConnectionInfoPopupAndroid::SetPermissionInfo( | 186 void ConnectionInfoPopupAndroid::SetPermissionInfo( |
| 187 const PermissionInfoList& permission_info_list, | 187 const PermissionInfoList& permission_info_list, |
| 188 ChosenObjectInfoList chosen_object_info_list) { | 188 ChosenObjectInfoList chosen_object_info_list) { |
| 189 NOTIMPLEMENTED(); | 189 NOTIMPLEMENTED(); |
| 190 } | 190 } |
| 191 | 191 |
| 192 void ConnectionInfoPopupAndroid::SetSelectedTab( | |
| 193 WebsiteSettingsUI::TabId tab_id) { | |
| 194 // There's no tab UI on Android - only connection info is shown. | |
| 195 NOTIMPLEMENTED(); | |
| 196 } | |
| 197 | |
| 198 // static | 192 // static |
| 199 bool | 193 bool |
| 200 ConnectionInfoPopupAndroid::RegisterConnectionInfoPopupAndroid( | 194 ConnectionInfoPopupAndroid::RegisterConnectionInfoPopupAndroid( |
| 201 JNIEnv* env) { | 195 JNIEnv* env) { |
| 202 return RegisterNativesImpl(env); | 196 return RegisterNativesImpl(env); |
| 203 } | 197 } |
| OLD | NEW |