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

Unified Diff: content/browser/appcache/appcache_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
Index: content/browser/appcache/appcache_internals_ui.cc
diff --git a/content/browser/appcache/appcache_internals_ui.cc b/content/browser/appcache/appcache_internals_ui.cc
index 89913ca618806850ea1698e6be86574c0ef9b714..28f33e71d756bdd11e5ded2fda08caac9af20838 100644
--- a/content/browser/appcache/appcache_internals_ui.cc
+++ b/content/browser/appcache/appcache_internals_ui.cc
@@ -433,7 +433,7 @@ void AppCacheInternalsUI::OnAppCacheInfoDeleted(
web_ui()->CallJavascriptFunctionUnsafe(
kFunctionOnAppCacheInfoDeleted,
base::StringValue(partition_path.AsUTF8Unsafe()),
- base::StringValue(manifest_url), base::FundamentalValue(deleted));
+ base::StringValue(manifest_url), base::Value(deleted));
}
void AppCacheInternalsUI::OnAppCacheDetailsReady(
@@ -496,7 +496,7 @@ void AppCacheInternalsUI::OnFileDetailsFailed(
web_ui()->CallJavascriptFunctionUnsafe(
kFunctionOnFileDetailsFailed,
*GetDictionaryValueForResponseEnquiry(response_enquiry),
- base::FundamentalValue(net_result_code));
+ base::Value(net_result_code));
}
AppCacheInternalsUI::Proxy* AppCacheInternalsUI::GetProxyForPartitionPath(
« no previous file with comments | « components/user_prefs/tracked/segregated_pref_store_unittest.cc ('k') | content/browser/devtools/protocol_string.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698