| Index: chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h
|
| ===================================================================
|
| --- chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h (revision 163741)
|
| +++ chrome/browser/geolocation/geolocation_confirm_infobar_delegate.h (working copy)
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_CONFIRM_INFOBAR_DELEGATE_H_
|
|
|
| #include "chrome/browser/api/infobars/confirm_infobar_delegate.h"
|
| +#include "content/public/browser/geolocation.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| #include <string>
|
| @@ -21,14 +22,11 @@
|
| GeolocationConfirmInfoBarDelegate(
|
| InfoBarTabHelper* infobar_helper,
|
| GeolocationInfoBarQueueController* controller,
|
| - int render_process_id,
|
| - int render_view_id,
|
| - int bridge_id,
|
| + const content::GeolocationPermissionRequestID& id,
|
| const GURL& requesting_frame_url,
|
| const std::string& display_languages);
|
|
|
| - int render_process_id() const { return render_process_id_; }
|
| - int render_view_id() const { return render_view_id_; }
|
| + const content::GeolocationPermissionRequestID& id() const { return id_; }
|
|
|
| protected:
|
| // ConfirmInfoBarDelegate:
|
| @@ -46,10 +44,7 @@
|
|
|
| private:
|
| GeolocationInfoBarQueueController* controller_;
|
| - int render_process_id_;
|
| - int render_view_id_;
|
| - int bridge_id_;
|
| -
|
| + const content::GeolocationPermissionRequestID id_;
|
| GURL requesting_frame_url_;
|
| std::string display_languages_;
|
|
|
|
|