| Index: chrome/browser/ui/search_engines/keyword_editor_controller.h | 
| diff --git a/chrome/browser/ui/search_engines/keyword_editor_controller.h b/chrome/browser/ui/search_engines/keyword_editor_controller.h | 
| index 15f8d143e157c7fb9c7884c8add76005a2c90371..9f9f67e1283a25fefc95e90c80c786dc94e70c87 100644 | 
| --- a/chrome/browser/ui/search_engines/keyword_editor_controller.h | 
| +++ b/chrome/browser/ui/search_engines/keyword_editor_controller.h | 
| @@ -5,10 +5,10 @@ | 
| #ifndef CHROME_BROWSER_UI_SEARCH_ENGINES_KEYWORD_EDITOR_CONTROLLER_H_ | 
| #define CHROME_BROWSER_UI_SEARCH_ENGINES_KEYWORD_EDITOR_CONTROLLER_H_ | 
|  | 
| +#include <memory> | 
| #include <string> | 
|  | 
| #include "base/macros.h" | 
| -#include "base/memory/scoped_ptr.h" | 
| #include "base/strings/string16.h" | 
|  | 
| class PrefRegistrySimple; | 
| @@ -69,7 +69,7 @@ class KeywordEditorController { | 
| TemplateURLService* url_model_; | 
|  | 
| // Model for the TableView. | 
| -  scoped_ptr<TemplateURLTableModel> table_model_; | 
| +  std::unique_ptr<TemplateURLTableModel> table_model_; | 
|  | 
| DISALLOW_COPY_AND_ASSIGN(KeywordEditorController); | 
| }; | 
|  |