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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.h

Issue 9703098: Remove "base/values.h" import from "base/location.h", fix up downstream files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix one more file on ChromiumOS Created 8 years, 9 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/chromeos/login/wizard_controller.h
diff --git a/chrome/browser/chromeos/login/wizard_controller.h b/chrome/browser/chromeos/login/wizard_controller.h
index 7ae3f5b2ad6225678fbe40c0965a946a6d242430..ffc4e5cca3d9bc8a6dee2e44a9e9d682179599ba 100644
--- a/chrome/browser/chromeos/login/wizard_controller.h
+++ b/chrome/browser/chromeos/login/wizard_controller.h
@@ -20,6 +20,10 @@
class PrefService;
+namespace base {
+class DictionaryValue;
+}
+
namespace chromeos {
class EnterpriseEnrollmentScreen;
@@ -78,7 +82,7 @@ class WizardController : public ScreenObserver {
// Shows the first screen defined by |first_screen_name| or by default
// if the parameter is empty. Takes ownership of |screen_parameters|.
void Init(const std::string& first_screen_name,
- DictionaryValue* screen_parameters);
+ base::DictionaryValue* screen_parameters);
// Advances to screen defined by |screen_name| and shows it.
void AdvanceToScreen(const std::string& screen_name);
@@ -201,7 +205,7 @@ class WizardController : public ScreenObserver {
static WizardController* default_controller_;
// Parameters for the first screen. May be NULL.
- scoped_ptr<DictionaryValue> screen_parameters_;
+ scoped_ptr<base::DictionaryValue> screen_parameters_;
base::OneShotTimer<WizardController> smooth_show_timer_;
« no previous file with comments | « chrome/browser/chromeos/login/signed_settings_unittest.cc ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698