| Index: chrome/browser/ui/cocoa/hyperlink_button_cell.h
 | 
| diff --git a/chrome/browser/ui/cocoa/hyperlink_button_cell.h b/chrome/browser/ui/cocoa/hyperlink_button_cell.h
 | 
| index 28572755d2d87f31454c1793cbb0c9e3e3d8c710..1cdc2635884160ce551bf1aaddbfa8bdd6ee8a2a 100644
 | 
| --- a/chrome/browser/ui/cocoa/hyperlink_button_cell.h
 | 
| +++ b/chrome/browser/ui/cocoa/hyperlink_button_cell.h
 | 
| @@ -3,7 +3,7 @@
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
|  #import <Cocoa/Cocoa.h>
 | 
| -#include "base/memory/scoped_nsobject.h"
 | 
| +#include "base/mac/scoped_nsobject.h"
 | 
|  
 | 
|  // A HyperlinkButtonCell is used to create an NSButton that looks and acts
 | 
|  // like a hyperlink. The default styling is to look like blue, underlined text
 | 
| @@ -16,7 +16,7 @@
 | 
|  //  4. In the Attributes panel, change the Bezel to Square.
 | 
|  //  5. In the Size panel, set the Height to 16.
 | 
|  @interface HyperlinkButtonCell : NSButtonCell {
 | 
| -  scoped_nsobject<NSColor> textColor_;
 | 
| +  base::scoped_nsobject<NSColor> textColor_;
 | 
|    BOOL shouldUnderline_;
 | 
|    BOOL underlineOnHover_;
 | 
|    BOOL mouseIsInside_;
 | 
| 
 |