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

Unified Diff: net/log/net_log_unittest.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: 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 | « ipc/ipc_message_utils_unittest.cc ('k') | services/preferences/public/cpp/tests/pref_observer_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698