Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6991)

Unified Diff: chrome/browser/ui/webui/options/search_engine_manager_handler.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « chrome/browser/ui/webui/options/options_ui.h ('k') | chrome/browser/ui/webui/options/stop_syncing_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698