| Index: components/login/screens/screen_context.cc
|
| diff --git a/components/login/screens/screen_context.cc b/components/login/screens/screen_context.cc
|
| index 37a307ec3b6c3c5868ddf8459991a63257cfc385..4021855c257dc2e32f7025caa8f93a70ba6c8f34 100644
|
| --- a/components/login/screens/screen_context.cc
|
| +++ b/components/login/screens/screen_context.cc
|
| @@ -32,15 +32,15 @@ ScreenContext::~ScreenContext() {
|
| }
|
|
|
| bool ScreenContext::SetBoolean(const KeyType& key, bool value) {
|
| - return Set(key, new base::FundamentalValue(value));
|
| + return Set(key, new base::Value(value));
|
| }
|
|
|
| bool ScreenContext::SetInteger(const KeyType& key, int value) {
|
| - return Set(key, new base::FundamentalValue(value));
|
| + return Set(key, new base::Value(value));
|
| }
|
|
|
| bool ScreenContext::SetDouble(const KeyType& key, double value) {
|
| - return Set(key, new base::FundamentalValue(value));
|
| + return Set(key, new base::Value(value));
|
| }
|
|
|
| bool ScreenContext::SetString(const KeyType& key, const std::string& value) {
|
|
|