Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(713)

Unified Diff: content/browser/indexed_db/indexed_db_internals_ui.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/gpu/gpu_internals_ui.cc ('k') | content/browser/media/media_internals_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c98d88c1fa89796fa3e517e81c834ff1eab16f96..f2811c56c645bdb7c7cc0fc2e527ff73b6ddb13b 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
« no previous file with comments | « content/browser/gpu/gpu_internals_ui.cc ('k') | content/browser/media/media_internals_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698