| Index: google_apis/gaia/gaia_auth_util.cc
|
| diff --git a/google_apis/gaia/gaia_auth_util.cc b/google_apis/gaia/gaia_auth_util.cc
|
| index dfe9de91caa1a50cdf531546b7801cbc6f8f50a6..a9fce2761cc6577aa4fb833517ed982e918c6a8f 100644
|
| --- a/google_apis/gaia/gaia_auth_util.cc
|
| +++ b/google_apis/gaia/gaia_auth_util.cc
|
| @@ -6,9 +6,10 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/json/json_reader.h"
|
| #include "base/logging.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_split.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/values.h"
|
| @@ -120,7 +121,7 @@ bool ParseListAccountsData(
|
| accounts->clear();
|
|
|
| // Parse returned data and make sure we have data.
|
| - scoped_ptr<base::Value> value = base::JSONReader::Read(data);
|
| + std::unique_ptr<base::Value> value = base::JSONReader::Read(data);
|
| if (!value)
|
| return false;
|
|
|
|
|