| Index: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
 | 
| diff --git a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
 | 
| index 7a0e57e3c0ca0885883de707ef56f28a5a0b276b..cd218e8ee193ecca60aa87f321a436e262ee4fd1 100644
 | 
| --- a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
 | 
| +++ b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
 | 
| @@ -9,7 +9,7 @@
 | 
|  
 | 
|  #import "chrome/browser/ui/cocoa/location_bar/location_bar_decoration.h"
 | 
|  
 | 
| -#import "base/memory/scoped_nsobject.h"
 | 
| +#import "base/mac/scoped_nsobject.h"
 | 
|  #include "base/strings/string16.h"
 | 
|  
 | 
|  // Draws the keyword hint, "Press [tab] to search <site>".
 | 
| @@ -32,14 +32,14 @@ class KeywordHintDecoration : public LocationBarDecoration {
 | 
|    NSImage* GetHintImage();
 | 
|  
 | 
|    // Attributes for drawing the hint string, such as font and color.
 | 
| -  scoped_nsobject<NSDictionary> attributes_;
 | 
| +  base::scoped_nsobject<NSDictionary> attributes_;
 | 
|  
 | 
|    // Cache for the [tab] image.
 | 
| -  scoped_nsobject<NSImage> hint_image_;
 | 
| +  base::scoped_nsobject<NSImage> hint_image_;
 | 
|  
 | 
|    // The text to display to the left and right of the hint image.
 | 
| -  scoped_nsobject<NSString> hint_prefix_;
 | 
| -  scoped_nsobject<NSString> hint_suffix_;
 | 
| +  base::scoped_nsobject<NSString> hint_prefix_;
 | 
| +  base::scoped_nsobject<NSString> hint_suffix_;
 | 
|  
 | 
|    DISALLOW_COPY_AND_ASSIGN(KeywordHintDecoration);
 | 
|  };
 | 
| 
 |