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

Unified Diff: chrome/installer/util/uninstall_metrics.cc

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 years 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/installer/util/uninstall_metrics.cc
diff --git a/chrome/installer/util/uninstall_metrics.cc b/chrome/installer/util/uninstall_metrics.cc
index 3be41c4f1cc48592b3222f641e4fabfee36d2c97..427d4f93e152ac093442d694ecab528dc407ae9b 100644
--- a/chrome/installer/util/uninstall_metrics.cc
+++ b/chrome/installer/util/uninstall_metrics.cc
@@ -83,7 +83,7 @@ bool ExtractUninstallMetricsFromFile(const base::FilePath& file_path,
return false;
// Preferences should always have a dictionary root.
- if (!root->IsType(base::Value::TYPE_DICTIONARY))
+ if (!root->IsType(base::Value::Type::DICTIONARY))
return false;
return ExtractUninstallMetrics(
« no previous file with comments | « chrome/installer/util/master_preferences.cc ('k') | chrome/renderer/extensions/cast_streaming_native_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698