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

Unified Diff: chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.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: chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
diff --git a/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc b/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
index 256af820bd19ff8cdec1a95286236a27c9b1e612..e66d19857e71cc953c9af067fe129bddd7c85478 100644
--- a/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
+++ b/chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.cc
@@ -80,17 +80,17 @@ void ScopedCrosSettingsTestHelper::Set(const std::string& path,
void ScopedCrosSettingsTestHelper::SetBoolean(const std::string& path,
bool in_value) {
- Set(path, base::FundamentalValue(in_value));
+ Set(path, base::Value(in_value));
}
void ScopedCrosSettingsTestHelper::SetInteger(const std::string& path,
int in_value) {
- Set(path, base::FundamentalValue(in_value));
+ Set(path, base::Value(in_value));
}
void ScopedCrosSettingsTestHelper::SetDouble(const std::string& path,
double in_value) {
- Set(path, base::FundamentalValue(in_value));
+ Set(path, base::Value(in_value));
}
void ScopedCrosSettingsTestHelper::SetString(const std::string& path,

Powered by Google App Engine
This is Rietveld 408576698