| Index: chrome/browser/notifications/balloon_host.cc
 | 
| diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc
 | 
| index 5fe8c4e9f4fafa84054687494ce9578c5c48e540..3fb3a6bc17d02179f4178428724c613d7f3e91de 100644
 | 
| --- a/chrome/browser/notifications/balloon_host.cc
 | 
| +++ b/chrome/browser/notifications/balloon_host.cc
 | 
| @@ -91,7 +91,8 @@ const string16& BalloonHost::GetSource() const {
 | 
|  
 | 
|  WebPreferences BalloonHost::GetWebkitPrefs() {
 | 
|    WebPreferences web_prefs =
 | 
| -      RenderViewHostDelegateHelper::GetWebkitPrefs(GetProfile(), enable_dom_ui_);
 | 
| +      RenderViewHostDelegateHelper::GetWebkitPrefs(GetProfile(),
 | 
| +                                                   enable_dom_ui_);
 | 
|    web_prefs.allow_scripts_to_close_windows = true;
 | 
|    return web_prefs;
 | 
|  }
 | 
| @@ -130,7 +131,9 @@ void BalloonHost::RenderViewReady(RenderViewHost* render_view_host) {
 | 
|        Source<BalloonHost>(this), NotificationService::NoDetails());
 | 
|  }
 | 
|  
 | 
| -void BalloonHost::RenderViewGone(RenderViewHost* render_view_host) {
 | 
| +void BalloonHost::RenderViewGone(RenderViewHost* render_view_host,
 | 
| +                                 base::TerminationStatus status,
 | 
| +                                 int error_code) {
 | 
|    Close(render_view_host);
 | 
|  }
 | 
|  
 | 
| 
 |