| Index: chrome/browser/chromeos/login/signed_settings_temp_storage.h
|
| diff --git a/chrome/browser/chromeos/login/signed_settings_temp_storage.h b/chrome/browser/chromeos/login/signed_settings_temp_storage.h
|
| index f7ae0f52f2a70a3a48a6060e109802a9767e1763..f8d4b6d3b97d1d77572c6ad719073071023595cd 100644
|
| --- a/chrome/browser/chromeos/login/signed_settings_temp_storage.h
|
| +++ b/chrome/browser/chromeos/login/signed_settings_temp_storage.h
|
| @@ -9,6 +9,7 @@
|
| #include <string>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/values.h"
|
|
|
| class PrefService;
|
|
|
| @@ -24,10 +25,10 @@ class SignedSettingsTempStorage {
|
| static void RegisterPrefs(PrefService* local_state);
|
|
|
| static bool Store(const std::string& name,
|
| - const std::string& value,
|
| + const base::Value& value,
|
| PrefService* local_state);
|
| static bool Retrieve(const std::string& name,
|
| - std::string* value,
|
| + base::Value** value,
|
| PrefService* local_state);
|
|
|
| // Call this after owner has been assigned to persist settings
|
|
|