| OLD | NEW | 
|    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" |    5 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" | 
|    6  |    6  | 
|    7 #include "base/utf_string_conversions.h" |    7 #include "base/utf_string_conversions.h" | 
 |    8 #include "chrome/browser/prefs/pref_registrar_simple.h" | 
|    8 #include "chrome/browser/prefs/pref_service.h" |    9 #include "chrome/browser/prefs/pref_service.h" | 
|    9 #include "chrome/browser/profiles/profile.h" |   10 #include "chrome/browser/profiles/profile.h" | 
|   10 #include "chrome/browser/search_engines/template_url.h" |   11 #include "chrome/browser/search_engines/template_url.h" | 
|   11 #include "chrome/browser/search_engines/template_url_service.h" |   12 #include "chrome/browser/search_engines/template_url_service.h" | 
|   12 #include "chrome/browser/search_engines/template_url_service_factory.h" |   13 #include "chrome/browser/search_engines/template_url_service_factory.h" | 
|   13 #include "chrome/browser/ui/search_engines/template_url_table_model.h" |   14 #include "chrome/browser/ui/search_engines/template_url_table_model.h" | 
|   14 #include "chrome/common/pref_names.h" |   15 #include "chrome/common/pref_names.h" | 
|   15 #include "content/public/browser/user_metrics.h" |   16 #include "content/public/browser/user_metrics.h" | 
|   16  |   17  | 
|   17 using content::UserMetricsAction; |   18 using content::UserMetricsAction; | 
|   18  |   19  | 
|   19 KeywordEditorController::KeywordEditorController(Profile* profile) |   20 KeywordEditorController::KeywordEditorController(Profile* profile) | 
|   20     : profile_(profile) { |   21     : profile_(profile) { | 
|   21   table_model_.reset(new TemplateURLTableModel( |   22   table_model_.reset(new TemplateURLTableModel( | 
|   22       TemplateURLServiceFactory::GetForProfile(profile))); |   23       TemplateURLServiceFactory::GetForProfile(profile))); | 
|   23 } |   24 } | 
|   24  |   25  | 
|   25 KeywordEditorController::~KeywordEditorController() { |   26 KeywordEditorController::~KeywordEditorController() { | 
|   26 } |   27 } | 
|   27  |   28  | 
|   28 // static |   29 // static | 
|   29 // TODO(rsesek): Other platforms besides Mac should remember window |   30 // TODO(rsesek): Other platforms besides Mac should remember window | 
|   30 // placement. http://crbug.com/22269 |   31 // placement. http://crbug.com/22269 | 
|   31 void KeywordEditorController::RegisterPrefs(PrefServiceSimple* prefs) { |   32 void KeywordEditorController::RegisterPrefs(PrefRegistrarSimple* prefs) { | 
|   32   prefs->RegisterDictionaryPref(prefs::kKeywordEditorWindowPlacement); |   33   prefs->RegisterDictionaryPref(prefs::kKeywordEditorWindowPlacement); | 
|   33 } |   34 } | 
|   34  |   35  | 
|   35 int KeywordEditorController::AddTemplateURL(const string16& title, |   36 int KeywordEditorController::AddTemplateURL(const string16& title, | 
|   36                                             const string16& keyword, |   37                                             const string16& keyword, | 
|   37                                             const std::string& url) { |   38                                             const std::string& url) { | 
|   38   DCHECK(!url.empty()); |   39   DCHECK(!url.empty()); | 
|   39  |   40  | 
|   40   content::RecordAction(UserMetricsAction("KeywordEditor_AddKeyword")); |   41   content::RecordAction(UserMetricsAction("KeywordEditor_AddKeyword")); | 
|   41  |   42  | 
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   98   return url_model()->loaded(); |   99   return url_model()->loaded(); | 
|   99 } |  100 } | 
|  100  |  101  | 
|  101 TemplateURL* KeywordEditorController::GetTemplateURL(int index) { |  102 TemplateURL* KeywordEditorController::GetTemplateURL(int index) { | 
|  102   return table_model_->GetTemplateURL(index); |  103   return table_model_->GetTemplateURL(index); | 
|  103 } |  104 } | 
|  104  |  105  | 
|  105 TemplateURLService* KeywordEditorController::url_model() const { |  106 TemplateURLService* KeywordEditorController::url_model() const { | 
|  106   return table_model_->template_url_service(); |  107   return table_model_->template_url_service(); | 
|  107 } |  108 } | 
| OLD | NEW |