| Index: ui/base/cocoa/base_view.h
 | 
| diff --git a/ui/base/cocoa/base_view.h b/ui/base/cocoa/base_view.h
 | 
| index f9bc275df3e86abf34c01745e642413d9b2692f6..df634fc52d2b67d6d449e03d2f0a55c6c53252d4 100644
 | 
| --- a/ui/base/cocoa/base_view.h
 | 
| +++ b/ui/base/cocoa/base_view.h
 | 
| @@ -7,9 +7,9 @@
 | 
|  
 | 
|  #import <Cocoa/Cocoa.h>
 | 
|  
 | 
| -#include "base/memory/scoped_nsobject.h"
 | 
| -#include "ui/base/ui_export.h"
 | 
| +#include "base/mac/scoped_nsobject.h"
 | 
|  #import "ui/base/cocoa/tracking_area.h"
 | 
| +#include "ui/base/ui_export.h"
 | 
|  #include "ui/gfx/rect.h"
 | 
|  
 | 
|  // A view that provides common functionality that many views will need:
 | 
| @@ -21,7 +21,7 @@ UI_EXPORT
 | 
|   @private
 | 
|    ui::ScopedCrTrackingArea trackingArea_;
 | 
|    BOOL dragging_;
 | 
| -  scoped_nsobject<NSEvent> pendingExitEvent_;
 | 
| +  base::scoped_nsobject<NSEvent> pendingExitEvent_;
 | 
|  }
 | 
|  
 | 
|  // Override these methods in a subclass.
 | 
| 
 |