summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/sync_setup_flow_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/sync_setup_flow_handler.h')
-rw-r--r--chrome/browser/sync/sync_setup_flow_handler.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/sync/sync_setup_flow_handler.h b/chrome/browser/sync/sync_setup_flow_handler.h
index b807d91..a7c2ae3 100644
--- a/chrome/browser/sync/sync_setup_flow_handler.h
+++ b/chrome/browser/sync/sync_setup_flow_handler.h
@@ -8,17 +8,20 @@
#include <string>
-class DictionaryValue;
class SyncSetupFlow;
+namespace base {
+class DictionaryValue;
+}
+
class SyncSetupFlowHandler {
public:
// These functions control which part of the HTML is visible.
- virtual void ShowGaiaLogin(const DictionaryValue& args) = 0;
+ virtual void ShowGaiaLogin(const base::DictionaryValue& args) = 0;
virtual void ShowGaiaSuccessAndClose() = 0;
virtual void ShowGaiaSuccessAndSettingUp() = 0;
- virtual void ShowConfigure(const DictionaryValue& args) = 0;
- virtual void ShowPassphraseEntry(const DictionaryValue& args) = 0;
+ virtual void ShowConfigure(const base::DictionaryValue& args) = 0;
+ virtual void ShowPassphraseEntry(const base::DictionaryValue& args) = 0;
virtual void ShowSettingUp() = 0;
virtual void ShowSetupDone(const std::wstring& user) = 0;
virtual void SetFlow(SyncSetupFlow* flow) = 0;