| Index: chrome/browser/ui/startup/session_crashed_infobar_delegate.h
 | 
| diff --git a/chrome/browser/ui/startup/session_crashed_infobar_delegate.h b/chrome/browser/ui/startup/session_crashed_infobar_delegate.h
 | 
| index 1437709f13c7ba8b029b03dd34140224de50bf16..990da53ba2fbc8f047b2f404f0e38057a455b8ba 100644
 | 
| --- a/chrome/browser/ui/startup/session_crashed_infobar_delegate.h
 | 
| +++ b/chrome/browser/ui/startup/session_crashed_infobar_delegate.h
 | 
| @@ -5,20 +5,21 @@
 | 
|  #ifndef CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_
 | 
|  #define CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_
 | 
|  
 | 
| -#include "chrome/browser/infobars/confirm_infobar_delegate.h"
 | 
| +#include "chrome/browser/infobars/content_confirm_infobar_delegate.h"
 | 
|  
 | 
|  class Browser;
 | 
|  class Profile;
 | 
|  
 | 
|  // A delegate for the InfoBar shown when the previous session has crashed.
 | 
| -class SessionCrashedInfoBarDelegate : public ConfirmInfoBarDelegate {
 | 
| +class SessionCrashedInfoBarDelegate : public ContentConfirmInfoBarDelegate {
 | 
|   public:
 | 
|    // If |browser| is not incognito, creates a session crashed infobar and
 | 
|    // delegate and adds the infobar to the InfoBarService for |browser|.
 | 
|    static void Create(Browser* browser);
 | 
|  
 | 
|   private:
 | 
| -  explicit SessionCrashedInfoBarDelegate(Profile* profile);
 | 
| +  explicit SessionCrashedInfoBarDelegate(Profile* profile,
 | 
| +                                         content::WebContents* web_contents);
 | 
|    virtual ~SessionCrashedInfoBarDelegate();
 | 
|  
 | 
|    // ConfirmInfoBarDelegate:
 | 
| 
 |