Index: chrome/browser/chromeos/login/supervised/supervised_user_authentication.cc |
diff --git a/chrome/browser/chromeos/login/supervised/supervised_user_authentication.cc b/chrome/browser/chromeos/login/supervised/supervised_user_authentication.cc |
index 389dcc5de8a04e8d9321ab68648efaf25d758a04..74856040c8920487340ed91e96a340a85f126cd4 100644 |
--- a/chrome/browser/chromeos/login/supervised/supervised_user_authentication.cc |
+++ b/chrome/browser/chromeos/login/supervised/supervised_user_authentication.cc |
@@ -58,8 +58,8 @@ base::DictionaryValue* LoadPasswordData(base::FilePath profile_dir) { |
profile_dir.Append(kPasswordUpdateFile)); |
std::string error_message; |
int error_code = JSONFileValueDeserializer::JSON_NO_ERROR; |
- scoped_ptr<base::Value> value( |
- deserializer.Deserialize(&error_code, &error_message)); |
+ scoped_ptr<base::Value> value = |
+ deserializer.Deserialize(&error_code, &error_message); |
if (JSONFileValueDeserializer::JSON_NO_ERROR != error_code) { |
LOG(ERROR) << "Could not deserialize password data, error = " << error_code |
<< " / " << error_message; |