| Index: chrome/browser/ui/screen_capture_infobar_delegate.h | 
| diff --git a/chrome/browser/ui/screen_capture_infobar_delegate.h b/chrome/browser/ui/screen_capture_infobar_delegate.h | 
| index de091d466556fd275e0878b1aea0e16e58f07a77..d24bc20005e7a5c00c7d99ddf471b6004d638f4c 100644 | 
| --- a/chrome/browser/ui/screen_capture_infobar_delegate.h | 
| +++ b/chrome/browser/ui/screen_capture_infobar_delegate.h | 
| @@ -11,24 +11,20 @@ | 
| #include "content/public/common/media_stream_request.h" | 
|  | 
| class InfoBarService; | 
| +class ScreenCaptureConfirmationUIInfobar; | 
|  | 
| class ScreenCaptureInfoBarDelegate : public ConfirmInfoBarDelegate { | 
| public: | 
| -  static void Create( | 
| -      content::WebContents* web_contents, | 
| -      const content::MediaStreamRequest& request, | 
| -      const content::MediaResponseCallback& callback); | 
| +  ScreenCaptureInfoBarDelegate( | 
| +      InfoBarService* infobar_service, | 
| +      const string16& page_title, | 
| +      ScreenCaptureConfirmationUIInfobar* result_handler); | 
|  | 
| virtual ~ScreenCaptureInfoBarDelegate(); | 
|  | 
| private: | 
| -  ScreenCaptureInfoBarDelegate( | 
| -      InfoBarService* infobar_service, | 
| -      const content::MediaStreamRequest& request, | 
| -      const content::MediaResponseCallback& callback); | 
|  | 
| // Base class: ConfirmInfoBarDelegate. | 
| -  virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE; | 
| virtual void InfoBarDismissed() OVERRIDE; | 
| virtual Type GetInfoBarType() const OVERRIDE; | 
| virtual ScreenCaptureInfoBarDelegate* | 
| @@ -38,10 +34,8 @@ class ScreenCaptureInfoBarDelegate : public ConfirmInfoBarDelegate { | 
| virtual bool Accept() OVERRIDE; | 
| virtual bool Cancel() OVERRIDE; | 
|  | 
| -  void Deny(); | 
| - | 
| -  const content::MediaStreamRequest request_; | 
| -  const content::MediaResponseCallback callback_; | 
| +  ScreenCaptureConfirmationUIInfobar* result_handler_; | 
| +  const string16 page_title_; | 
|  | 
| DISALLOW_COPY_AND_ASSIGN(ScreenCaptureInfoBarDelegate); | 
| }; | 
|  |