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: components/autofill/core/common/save_password_progress_logger.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: components/autofill/core/common/save_password_progress_logger.cc
diff --git a/components/autofill/core/common/save_password_progress_logger.cc b/components/autofill/core/common/save_password_progress_logger.cc
index b2dd78b63c8f795cdbe4f1ed14422835d9de257f..e23740eb35a62adc6ff0bb840697db1034dcda2e 100644
--- a/components/autofill/core/common/save_password_progress_logger.cc
+++ b/components/autofill/core/common/save_password_progress_logger.cc
@@ -18,7 +18,7 @@
using base::checked_cast;
using base::Value;
using base::DictionaryValue;
-using base::FundamentalValue;
+using base::Value;
using base::StringValue;
namespace autofill {
@@ -101,13 +101,13 @@ void SavePasswordProgressLogger::LogURL(
void SavePasswordProgressLogger::LogBoolean(
SavePasswordProgressLogger::StringID label,
bool truth_value) {
- LogValue(label, FundamentalValue(truth_value));
+ LogValue(label, Value(truth_value));
}
void SavePasswordProgressLogger::LogNumber(
SavePasswordProgressLogger::StringID label,
int signed_number) {
- LogValue(label, FundamentalValue(signed_number));
+ LogValue(label, Value(signed_number));
}
void SavePasswordProgressLogger::LogNumber(

Powered by Google App Engine
This is Rietveld 408576698