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

Unified Diff: chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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
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 62af29aff01fe0d9c98f98801ba5b1432690fa8d..0d5749bc83269e643f6cb8f7d48dc9a95aece770 100644
--- a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
+++ b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.cc
@@ -34,7 +34,7 @@ void QuotaInternalsHandler::RegisterMessages() {
void QuotaInternalsHandler::ReportAvailableSpace(int64_t available_space) {
SendMessage("AvailableSpaceUpdated",
- base::FundamentalValue(static_cast<double>(available_space)));
+ base::Value(static_cast<double>(available_space)));
}
void QuotaInternalsHandler::ReportGlobalInfo(const GlobalStorageInfo& data) {
« no previous file with comments | « chrome/browser/ui/webui/print_preview/print_preview_ui.cc ('k') | chrome/browser/ui/webui/settings/certificates_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698