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 #ifndef CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_FACTORY_
H_ |
| 6 #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_FACTORY_
H_ |
| 7 |
| 8 #include "base/values.h" |
| 9 |
| 10 class GeolocationConfirmInfoBarDelegate; |
| 11 class GeolocationInfoBarQueueController; |
| 12 class GURL; |
| 13 class InfoBarTabHelper; |
| 14 |
| 15 class GeolocationConfirmInfoBarDelegateFactory { |
| 16 public: |
| 17 GeolocationConfirmInfoBarDelegateFactory() {} |
| 18 ~GeolocationConfirmInfoBarDelegateFactory() {} |
| 19 static GeolocationConfirmInfoBarDelegate* Create( |
| 20 InfoBarTabHelper* infobar_helper, |
| 21 GeolocationInfoBarQueueController* controller, |
| 22 int render_process_id, |
| 23 int render_view_id, |
| 24 int bridge_id, |
| 25 const GURL& requesting_frame_url, |
| 26 const std::string& display_languages); |
| 27 |
| 28 private: |
| 29 |
| 30 DISALLOW_COPY_AND_ASSIGN(GeolocationConfirmInfoBarDelegateFactory); |
| 31 }; |
| 32 |
| 33 #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_FACTO
RY_H_ |
OLD | NEW |