OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/geolocation/geolocation_infobar_queue_controller_androi d.h" | |
6 | |
7 #include "chrome/browser/geolocation/geolocation_confirm_infobar_delegate_androi d.h" | |
8 | |
9 GeolocationInfoBarQueueControllerAndroid:: | |
10 GeolocationInfoBarQueueControllerAndroid(Profile* profile) | |
11 : GeolocationInfoBarQueueController(profile) { | |
12 } | |
13 | |
14 GeolocationConfirmInfoBarDelegate* | |
15 GeolocationInfoBarQueueControllerAndroid::CreateInfoBarDelegate( | |
bulach
2012/10/17 13:17:38
see above, I think this can be made into a simpler
Ramya
2012/10/17 21:43:31
Done.
| |
16 InfoBarTabHelper* infobar_helper, | |
17 GeolocationInfoBarQueueController* controller, | |
18 int render_process_id, | |
19 int render_view_id, | |
20 int bridge_id, | |
21 const GURL& requesting_frame_url, | |
22 const std::string& display_languages) { | |
23 return new GeolocationConfirmInfoBarDelegateAndroid( | |
24 infobar_helper, | |
25 controller, | |
26 render_process_id, | |
27 render_view_id, | |
28 bridge_id, | |
29 requesting_frame_url, | |
30 display_languages); | |
31 } | |
OLD | NEW |