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

Unified Diff: chrome/browser/sync/sync_setup_flow_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
« no previous file with comments | « chrome/browser/sync/sessions/session_state.h ('k') | chrome/browser/sync/sync_ui_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome/browser/sync/sessions/session_state.h ('k') | chrome/browser/sync/sync_ui_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698