Index: chrome/browser/geolocation/geolocation_confirm_infobar_delegate_factory.cc |
=================================================================== |
--- chrome/browser/geolocation/geolocation_confirm_infobar_delegate_factory.cc (revision 163741) |
+++ chrome/browser/geolocation/geolocation_confirm_infobar_delegate_factory.cc (working copy) |
@@ -12,30 +12,15 @@ |
GeolocationConfirmInfoBarDelegate* |
GeolocationConfirmInfoBarDelegateFactory::Create( |
- InfoBarTabHelper* infobar_helper, |
- GeolocationInfoBarQueueController* controller, |
- int render_process_id, |
- int render_view_id, |
- int bridge_id, |
- const GURL& requesting_frame_url, |
- const std::string& display_languages) { |
+ InfoBarTabHelper* infobar_helper, |
+ GeolocationInfoBarQueueController* controller, |
+ const GeolocationPermissionRequestID& id, |
+ const GURL& requesting_frame_url, |
+ const std::string& display_languages) { |
#if defined(OS_ANDROID) |
return new GeolocationConfirmInfoBarDelegateAndroid( |
- infobar_helper, |
- controller, |
- render_process_id, |
- render_view_id, |
- bridge_id, |
- requesting_frame_url, |
- display_languages); |
#else |
return new GeolocationConfirmInfoBarDelegate( |
- infobar_helper, |
- controller, |
- render_process_id, |
- render_view_id, |
- bridge_id, |
- requesting_frame_url, |
- display_languages); |
#endif |
+ infobar_helper, controller, id, requesting_frame_url, display_languages); |
} |