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

Unified Diff: content/browser/appcache/appcache_internals_ui.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: 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 41f74ae3f996eef190d830b06ac66ec21117cb37..7aeefc13fe14202d283a484fbb60e637afb43a82 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(

Powered by Google App Engine
This is Rietveld 408576698