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

Unified Diff: components/autofill/core/common/save_password_progress_logger.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
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 93d1bc6c5002e2a4e56a7077cbff5c07d02aec6a..5fc676c20e92e8ab15d2776c21f23f28fd6f6d42 100644
--- a/components/autofill/core/common/save_password_progress_logger.cc
+++ b/components/autofill/core/common/save_password_progress_logger.cc
@@ -18,7 +18,6 @@
using base::checked_cast;
using base::Value;
using base::DictionaryValue;
-using base::FundamentalValue;
using base::StringValue;
namespace autofill {
@@ -101,13 +100,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