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

Unified Diff: net/log/net_log_unittest.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 | « mojo/common/values_struct_traits.cc ('k') | services/catalog/public/tools/catalog.cc.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/log/net_log_unittest.cc
diff --git a/net/log/net_log_unittest.cc b/net/log/net_log_unittest.cc
index 4e67951b2666af4bda3f2503b72b28adcfbcb0bd..2f811cadff07bccc809b71485d36a7a639e02c67 100644
--- a/net/log/net_log_unittest.cc
+++ b/net/log/net_log_unittest.cc
@@ -43,8 +43,7 @@ int CaptureModeToInt(NetLogCaptureMode capture_mode) {
std::unique_ptr<base::Value> CaptureModeToValue(
NetLogCaptureMode capture_mode) {
- return base::MakeUnique<base::FundamentalValue>(
- CaptureModeToInt(capture_mode));
+ return base::MakeUnique<base::Value>(CaptureModeToInt(capture_mode));
}
std::unique_ptr<base::Value> NetCaptureModeCallback(
« no previous file with comments | « mojo/common/values_struct_traits.cc ('k') | services/catalog/public/tools/catalog.cc.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698