| Index: chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| diff --git a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| index 8938c69baed5a1b10bfcadbce9edefddbb083e9a..27ff16b2bdf96f47d54b2b163e69c4fac39e560e 100644
|
| --- a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| +++ b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| @@ -38,7 +38,7 @@ void QuotaInternalsHandler::ReportAvailableSpace(int64_t available_space) {
|
| }
|
|
|
| void QuotaInternalsHandler::ReportGlobalInfo(const GlobalStorageInfo& data) {
|
| - scoped_ptr<base::Value> value(data.NewValue());
|
| + std::unique_ptr<base::Value> value(data.NewValue());
|
| SendMessage("GlobalInfoUpdated", *value);
|
| }
|
|
|
|
|