| Index: ui/base/cocoa/nib_loading.mm
 | 
| diff --git a/ui/base/cocoa/nib_loading.mm b/ui/base/cocoa/nib_loading.mm
 | 
| index 9430a76e85b2f6f00f2bbaf2731c18c5eb40f368..dd0eb48d806e1454028ada1c2b738b131d6b61ae 100644
 | 
| --- a/ui/base/cocoa/nib_loading.mm
 | 
| +++ b/ui/base/cocoa/nib_loading.mm
 | 
| @@ -5,12 +5,12 @@
 | 
|  #import "ui/base/cocoa/nib_loading.h"
 | 
|  
 | 
|  #include "base/mac/bundle_locations.h"
 | 
| -#include "base/memory/scoped_nsobject.h"
 | 
| +#include "base/mac/scoped_nsobject.h"
 | 
|  
 | 
|  namespace ui {
 | 
|  
 | 
|  NSView* GetViewFromNib(NSString* name) {
 | 
| -  scoped_nsobject<NSNib> nib(
 | 
| +  base::scoped_nsobject<NSNib> nib(
 | 
|        [[NSNib alloc] initWithNibNamed:name
 | 
|                                 bundle:base::mac::FrameworkBundle()]);
 | 
|    if (!nib)
 | 
| 
 |