| 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 2f408d295f23fdbd5a604f1d2b61972436ea8f44..23c164a587c3d9c3f51f2db772ae303528af213e 100644
|
| --- a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| +++ b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
|
| @@ -34,9 +34,8 @@ void QuotaInternalsHandler::RegisterMessages() {
|
| }
|
|
|
| void QuotaInternalsHandler::ReportAvailableSpace(int64 available_space) {
|
| - scoped_ptr<base::Value> avail(
|
| - base::Value::CreateDoubleValue(static_cast<double>(available_space)));
|
| - SendMessage("AvailableSpaceUpdated", *avail);
|
| + SendMessage("AvailableSpaceUpdated",
|
| + base::FundamentalValue(static_cast<double>(available_space)));
|
| }
|
|
|
| void QuotaInternalsHandler::ReportGlobalInfo(const GlobalStorageInfo& data) {
|
|
|