| 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/connection_info_popup_android.h" | 5 #include "chrome/browser/ui/android/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 "base/stl_util.h" | 10 #include "base/stl_util.h" |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 } | 188 } |
| 189 | 189 |
| 190 void ConnectionInfoPopupAndroid::SetCookieInfo( | 190 void ConnectionInfoPopupAndroid::SetCookieInfo( |
| 191 const CookieInfoList& cookie_info_list) { | 191 const CookieInfoList& cookie_info_list) { |
| 192 NOTIMPLEMENTED(); | 192 NOTIMPLEMENTED(); |
| 193 } | 193 } |
| 194 | 194 |
| 195 void ConnectionInfoPopupAndroid::SetPermissionInfo( | 195 void ConnectionInfoPopupAndroid::SetPermissionInfo( |
| 196 const PermissionInfoList& permission_info_list, | 196 const PermissionInfoList& permission_info_list, |
| 197 const ChosenObjectInfoList& chosen_object_info_list) { | 197 const ChosenObjectInfoList& chosen_object_info_list) { |
| 198 STLDeleteContainerPointers(chosen_object_info_list.begin(), | 198 base::STLDeleteContainerPointers(chosen_object_info_list.begin(), |
| 199 chosen_object_info_list.end()); | 199 chosen_object_info_list.end()); |
| 200 | 200 |
| 201 NOTIMPLEMENTED(); | 201 NOTIMPLEMENTED(); |
| 202 } | 202 } |
| 203 | 203 |
| 204 void ConnectionInfoPopupAndroid::SetSelectedTab( | 204 void ConnectionInfoPopupAndroid::SetSelectedTab( |
| 205 WebsiteSettingsUI::TabId tab_id) { | 205 WebsiteSettingsUI::TabId tab_id) { |
| 206 // There's no tab UI on Android - only connection info is shown. | 206 // There's no tab UI on Android - only connection info is shown. |
| 207 NOTIMPLEMENTED(); | 207 NOTIMPLEMENTED(); |
| 208 } | 208 } |
| 209 | 209 |
| 210 // static | 210 // static |
| 211 bool | 211 bool |
| 212 ConnectionInfoPopupAndroid::RegisterConnectionInfoPopupAndroid( | 212 ConnectionInfoPopupAndroid::RegisterConnectionInfoPopupAndroid( |
| 213 JNIEnv* env) { | 213 JNIEnv* env) { |
| 214 return RegisterNativesImpl(env); | 214 return RegisterNativesImpl(env); |
| 215 } | 215 } |
| OLD | NEW |