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

Unified Diff: chrome/browser/ui/webui/options/sync_setup_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/sync_setup_handler.h
===================================================================
--- chrome/browser/ui/webui/options/sync_setup_handler.h (revision 92173)
+++ chrome/browser/ui/webui/options/sync_setup_handler.h (working copy)
@@ -17,16 +17,16 @@
virtual ~SyncSetupHandler();
// OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(DictionaryValue* localized_strings);
+ virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
virtual void Initialize();
virtual void RegisterMessages();
// SyncSetupFlowHandler implementation.
- virtual void ShowGaiaLogin(const DictionaryValue& args);
+ virtual void ShowGaiaLogin(const base::DictionaryValue& args);
virtual void ShowGaiaSuccessAndClose();
virtual void ShowGaiaSuccessAndSettingUp();
- virtual void ShowConfigure(const DictionaryValue& args);
- virtual void ShowPassphraseEntry(const DictionaryValue& args);
+ virtual void ShowConfigure(const base::DictionaryValue& args);
+ virtual void ShowPassphraseEntry(const base::DictionaryValue& args);
virtual void ShowSettingUp();
virtual void ShowSetupDone(const std::wstring& user);
virtual void SetFlow(SyncSetupFlow* flow);
@@ -47,14 +47,14 @@
// Callbacks from the page. Protected in order to be called by the
// SyncSetupWizardTest.
- void OnDidClosePage(const ListValue* args);
- void HandleSubmitAuth(const ListValue* args);
- void HandleConfigure(const ListValue* args);
- void HandlePassphraseEntry(const ListValue* args);
- void HandlePassphraseCancel(const ListValue* args);
- void HandleAttachHandler(const ListValue* args);
- void HandleShowErrorUI(const ListValue* args);
- void HandleShowSetupUI(const ListValue* args);
+ void OnDidClosePage(const base::ListValue* args);
+ void HandleSubmitAuth(const base::ListValue* args);
+ void HandleConfigure(const base::ListValue* args);
+ void HandlePassphraseEntry(const base::ListValue* args);
+ void HandlePassphraseCancel(const base::ListValue* args);
+ void HandleAttachHandler(const base::ListValue* args);
+ void HandleShowErrorUI(const base::ListValue* args);
+ void HandleShowSetupUI(const base::ListValue* args);
SyncSetupFlow* flow() { return flow_; }
« no previous file with comments | « chrome/browser/ui/webui/options/stop_syncing_handler.h ('k') | chrome/browser/ui/webui/print_preview_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698