Index: chrome/browser/ui/webui/options/search_engine_manager_handler.h |
=================================================================== |
--- chrome/browser/ui/webui/options/search_engine_manager_handler.h (revision 92173) |
+++ chrome/browser/ui/webui/options/search_engine_manager_handler.h (working copy) |
@@ -21,7 +21,7 @@ |
virtual void Initialize(); |
// OptionsPageUIHandler implementation. |
- virtual void GetLocalizedValues(DictionaryValue* localized_strings); |
+ virtual void GetLocalizedValues(base::DictionaryValue* localized_strings); |
// ui::TableModelObserver implementation. |
virtual void OnModelChanged(); |
@@ -42,30 +42,30 @@ |
scoped_ptr<EditSearchEngineController> edit_controller_; |
// Removes the search engine at the given index. Called from WebUI. |
- void RemoveSearchEngine(const ListValue* args); |
+ void RemoveSearchEngine(const base::ListValue* args); |
// Sets the search engine at the given index to be default. Called from WebUI. |
- void SetDefaultSearchEngine(const ListValue* args); |
+ void SetDefaultSearchEngine(const base::ListValue* args); |
// Starts an edit session for the search engine at the given index. If the |
// index is -1, starts editing a new search engine instead of an existing one. |
// Called from WebUI. |
- void EditSearchEngine(const ListValue* args); |
+ void EditSearchEngine(const base::ListValue* args); |
// Validates the given search engine values, and reports the results back |
// to WebUI. Called from WebUI. |
- void CheckSearchEngineInfoValidity(const ListValue* args); |
+ void CheckSearchEngineInfoValidity(const base::ListValue* args); |
// Called when an edit is cancelled. |
// Called from WebUI. |
- void EditCancelled(const ListValue* args); |
+ void EditCancelled(const base::ListValue* args); |
// Called when an edit is finished and should be saved. |
// Called from WebUI. |
- void EditCompleted(const ListValue* args); |
+ void EditCompleted(const base::ListValue* args); |
// Returns a dictionary to pass to WebUI representing the given search engine. |
- DictionaryValue* CreateDictionaryForEngine(int index, bool is_default); |
+ base::DictionaryValue* CreateDictionaryForEngine(int index, bool is_default); |
DISALLOW_COPY_AND_ASSIGN(SearchEngineManagerHandler); |
}; |