| Index: chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller.h
 | 
| diff --git a/chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller.h b/chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller.h
 | 
| index b48fc8760a9184237e206f6dff11bca0fc3f1bfe..60b986d8b8a98ca622d5ac8637e4ab1ed7ebe0bf 100644
 | 
| --- a/chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller.h
 | 
| +++ b/chrome/browser/ui/cocoa/fullscreen_exit_bubble_controller.h
 | 
| @@ -4,7 +4,7 @@
 | 
|  
 | 
|  #import <Cocoa/Cocoa.h>
 | 
|  
 | 
| -#include "base/memory/scoped_nsobject.h"
 | 
| +#include "base/mac/scoped_nsobject.h"
 | 
|  #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h"
 | 
|  #include "googleurl/src/gurl.h"
 | 
|  
 | 
| @@ -34,10 +34,10 @@ class Browser;
 | 
|    // text views cannot conveniently be created in IB. The xib file contains
 | 
|    // a text field |exitLabelPlaceholder_| that's replaced by this text view
 | 
|    // |exitLabel_| in -awakeFromNib.
 | 
| -  scoped_nsobject<NSTextView> exitLabel_;
 | 
| +  base::scoped_nsobject<NSTextView> exitLabel_;
 | 
|  
 | 
| -  scoped_nsobject<NSTimer> hideTimer_;
 | 
| -  scoped_nsobject<NSAnimation> hideAnimation_;
 | 
| +  base::scoped_nsobject<NSTimer> hideTimer_;
 | 
| +  base::scoped_nsobject<NSAnimation> hideAnimation_;
 | 
|  };
 | 
|  
 | 
|  // Initializes a new InfoBarController.
 | 
| 
 |