Index: chrome/browser/sync/sync_setup_flow_handler.h |
=================================================================== |
--- chrome/browser/sync/sync_setup_flow_handler.h (revision 92173) |
+++ chrome/browser/sync/sync_setup_flow_handler.h (working copy) |
@@ -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; |