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

Unified Diff: chrome/browser/sync/sync_setup_wizard_unittest.cc

Issue 8589033: [Sync] Change std::wstring to string16 in SyncSetupFlowHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/sync/sync_setup_flow_handler.h ('k') | chrome/browser/ui/webui/sync_setup_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/sync_setup_wizard_unittest.cc
diff --git a/chrome/browser/sync/sync_setup_wizard_unittest.cc b/chrome/browser/sync/sync_setup_wizard_unittest.cc
index e407623048245d58c8ff97084ac25cb558c13301..0c3628d183922eb09e6734b00599236f7e57c69e 100644
--- a/chrome/browser/sync/sync_setup_wizard_unittest.cc
+++ b/chrome/browser/sync/sync_setup_wizard_unittest.cc
@@ -35,20 +35,20 @@ class MockSyncSetupHandler : public OptionsSyncSetupHandler {
MockSyncSetupHandler() : OptionsSyncSetupHandler(NULL) {}
// SyncSetupFlowHandler implementation.
- virtual void ShowGaiaLogin(const DictionaryValue& args) {}
- virtual void ShowGaiaSuccessAndClose() {
+ virtual void ShowGaiaLogin(const DictionaryValue& args) OVERRIDE {}
+ virtual void ShowGaiaSuccessAndClose() OVERRIDE {
flow()->OnDialogClosed("");
}
- virtual void ShowGaiaSuccessAndSettingUp() {}
- virtual void ShowConfigure(const DictionaryValue& args) {}
- virtual void ShowPassphraseEntry(const DictionaryValue& args) {}
- virtual void ShowSettingUp() {}
- virtual void ShowSetupDone(const std::wstring& user) {
+ virtual void ShowGaiaSuccessAndSettingUp() OVERRIDE {}
+ virtual void ShowConfigure(const DictionaryValue& args) OVERRIDE {}
+ virtual void ShowPassphraseEntry(const DictionaryValue& args) OVERRIDE {}
+ virtual void ShowSettingUp() OVERRIDE {}
+ virtual void ShowSetupDone(const string16& user) OVERRIDE {
flow()->OnDialogClosed("");
}
void CloseSetupUI() {
- ShowSetupDone(std::wstring());
+ ShowSetupDone(string16());
}
private:
« no previous file with comments | « chrome/browser/sync/sync_setup_flow_handler.h ('k') | chrome/browser/ui/webui/sync_setup_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698