| Index: chrome/browser/chrome_quota_permission_context.cc
 | 
| diff --git a/chrome/browser/chrome_quota_permission_context.cc b/chrome/browser/chrome_quota_permission_context.cc
 | 
| index f2ef804532514d6395604317e74a6b13a668b9c7..f71c26d26abe23a5a0511e7d28b81cde150e886e 100644
 | 
| --- a/chrome/browser/chrome_quota_permission_context.cc
 | 
| +++ b/chrome/browser/chrome_quota_permission_context.cc
 | 
| @@ -160,8 +160,8 @@ class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate {
 | 
|    virtual ~RequestQuotaInfoBarDelegate();
 | 
|  
 | 
|    // ConfirmInfoBarDelegate:
 | 
| -  virtual bool ShouldExpireInternal(
 | 
| -      const content::LoadCommittedDetails& details) const OVERRIDE;
 | 
| +  virtual bool ShouldExpireInternal(const NavigationDetails& details) const
 | 
| +      OVERRIDE;
 | 
|    virtual base::string16 GetMessageText() const OVERRIDE;
 | 
|    virtual bool Accept() OVERRIDE;
 | 
|    virtual bool Cancel() OVERRIDE;
 | 
| @@ -211,7 +211,7 @@ RequestQuotaInfoBarDelegate::~RequestQuotaInfoBarDelegate() {
 | 
|  }
 | 
|  
 | 
|  bool RequestQuotaInfoBarDelegate::ShouldExpireInternal(
 | 
| -    const content::LoadCommittedDetails& details) const {
 | 
| +    const NavigationDetails& details) const {
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| 
 |