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

Unified Diff: components/login/base_screen_handler_utils.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
« no previous file with comments | « components/login/base_screen_handler_utils.h ('k') | components/login/screens/screen_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/login/base_screen_handler_utils.cc
diff --git a/components/login/base_screen_handler_utils.cc b/components/login/base_screen_handler_utils.cc
index fd977a33eaa943eb2b2170b280ae12f0579f9945..89c2cf407164c114902f7baba01bf3936aa0b618 100644
--- a/components/login/base_screen_handler_utils.cc
+++ b/components/login/base_screen_handler_utils.cc
@@ -72,16 +72,16 @@ bool ParseValue(const base::Value* value, AccountId* out_value) {
return true;
}
-base::FundamentalValue MakeValue(bool v) {
- return base::FundamentalValue(v);
+base::Value MakeValue(bool v) {
+ return base::Value(v);
}
-base::FundamentalValue MakeValue(int v) {
- return base::FundamentalValue(v);
+base::Value MakeValue(int v) {
+ return base::Value(v);
}
-base::FundamentalValue MakeValue(double v) {
- return base::FundamentalValue(v);
+base::Value MakeValue(double v) {
+ return base::Value(v);
}
base::StringValue MakeValue(const std::string& v) {
« no previous file with comments | « components/login/base_screen_handler_utils.h ('k') | components/login/screens/screen_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698