| Index: content/browser/indexed_db/indexed_db_internals_ui.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_internals_ui.cc b/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| index 7c16e19b55cbbb09390ecd9bcaaa4c5d989800bd..5e181f43c896c6ef11cbae076f31e3e3284b31c6 100644
|
| --- a/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| +++ b/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| @@ -263,7 +263,7 @@ void IndexedDBInternalsUI::OnForcedClose(const base::FilePath& partition_path,
|
| "indexeddb.onForcedClose",
|
| base::StringValue(partition_path.value()),
|
| base::StringValue(origin_url.spec()),
|
| - base::FundamentalValue(double(connection_count)));
|
| + base::FundamentalValue(static_cast<double>(connection_count)));
|
| }
|
|
|
| void IndexedDBInternalsUI::OnDownloadDataReady(
|
| @@ -355,7 +355,7 @@ void IndexedDBInternalsUI::OnDownloadStarted(
|
| "indexeddb.onOriginDownloadReady",
|
| base::StringValue(partition_path.value()),
|
| base::StringValue(origin_url.spec()),
|
| - base::FundamentalValue(double(connection_count)));
|
| + base::FundamentalValue(static_cast<double>(connection_count)));
|
| }
|
|
|
| } // namespace content
|
|
|