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

Side by Side Diff: chrome/browser/ui/android/connection_info_popup_android.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change Created 4 years, 4 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/themes/browser_theme_pack.cc ('k') | chrome/browser/ui/android/website_settings_popup_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698