| Index: chrome/browser/ui/cocoa/browser_window_cocoa.mm | 
| diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.mm b/chrome/browser/ui/cocoa/browser_window_cocoa.mm | 
| index 485ebb18260378ec168646d5fd08dba0d31c2709..9b954b30d3d88a2c74d1e53a2a19e6bdb2873362 100644 | 
| --- a/chrome/browser/ui/cocoa/browser_window_cocoa.mm | 
| +++ b/chrome/browser/ui/cocoa/browser_window_cocoa.mm | 
| @@ -375,7 +375,7 @@ void BrowserWindowCocoa::Restore() { | 
| // See browser_window_controller.h for a detailed explanation of the logic in | 
| // this method. | 
| void BrowserWindowCocoa::EnterFullscreen(const GURL& url, | 
| -                                         FullscreenExitBubbleType bubble_type, | 
| +                                         ExclusiveAccessBubbleType bubble_type, | 
| bool with_toolbar) { | 
| if (browser_->fullscreen_controller()->IsWindowFullscreenForTabOrPending()) | 
| [controller_ enterWebContentFullscreenForURL:url bubbleType:bubble_type]; | 
| @@ -390,8 +390,8 @@ void BrowserWindowCocoa::ExitFullscreen() { | 
| } | 
|  | 
| void BrowserWindowCocoa::UpdateFullscreenExitBubbleContent( | 
| -      const GURL& url, | 
| -      FullscreenExitBubbleType bubble_type) { | 
| +    const GURL& url, | 
| +    ExclusiveAccessBubbleType bubble_type) { | 
| [controller_ updateFullscreenExitBubbleURL:url bubbleType:bubble_type]; | 
| } | 
|  | 
|  |