| 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 a6e0d7cbe9cf1f8491e97cc85a3a17fae638b8a6..c181fdbb5833a3f22016ed6a9d40d7d8f57ea8dd 100644
|
| --- a/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| +++ b/content/browser/indexed_db/indexed_db_internals_ui.cc
|
| @@ -272,7 +272,7 @@ void IndexedDBInternalsUI::OnForcedClose(const base::FilePath& partition_path,
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| "indexeddb.onForcedClose", base::StringValue(partition_path.value()),
|
| base::StringValue(origin.Serialize()),
|
| - base::FundamentalValue(static_cast<double>(connection_count)));
|
| + base::Value(static_cast<double>(connection_count)));
|
| }
|
|
|
| void IndexedDBInternalsUI::OnDownloadDataReady(
|
| @@ -361,7 +361,7 @@ void IndexedDBInternalsUI::OnDownloadStarted(
|
| "indexeddb.onOriginDownloadReady",
|
| base::StringValue(partition_path.value()),
|
| base::StringValue(origin.Serialize()),
|
| - base::FundamentalValue(static_cast<double>(connection_count)));
|
| + base::Value(static_cast<double>(connection_count)));
|
| }
|
|
|
| } // namespace content
|
|
|