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

Unified Diff: components/password_manager/sync/browser/password_manager_setting_migrator_service_unittest.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/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 fc4199e34ce5771fb341ecd8f54f4f6315609859..6e432dfb60f6036c932532104bbd06d05d8f6acd 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
@@ -75,7 +75,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