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

Unified Diff: components/password_manager/sync/browser/password_manager_setting_migrator_service_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: components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.cc
diff --git a/components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.cc b/components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.cc
index b14f21f23bafec7dd3ba57a78059104e5499e0a6..7f2c59994af5b5d00efe31c15b041fac8796d1d7 100644
--- a/components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.cc
+++ b/components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.cc
@@ -76,7 +76,7 @@ enum PasswordManagerPreferencesInitialAndFinalValues {
};
syncer::SyncData CreatePrefSyncData(const std::string& name, bool value) {
- base::FundamentalValue bool_value(value);
+ base::Value bool_value(value);
std::string serialized;
base::JSONWriter::Write(bool_value, &serialized);
sync_pb::EntitySpecifics specifics;

Powered by Google App Engine
This is Rietveld 408576698