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

Unified Diff: chrome/browser/chromeos/extensions/input_method_api.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: chrome/browser/chromeos/extensions/input_method_api.cc
diff --git a/chrome/browser/chromeos/extensions/input_method_api.cc b/chrome/browser/chromeos/extensions/input_method_api.cc
index d63b0d824555e05054c8197d917c90f815cfa4b6..567a27178f32c96d083697c78e73b747ae2af9a4 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -217,8 +217,8 @@ InputMethodPrivateGetEncryptSyncEnabledFunction::Run() {
Profile::FromBrowserContext(browser_context()));
if (!profile_sync_service)
return RespondNow(Error("Sync service is not ready for current profile."));
- std::unique_ptr<base::Value> ret(new base::FundamentalValue(
- profile_sync_service->IsEncryptEverythingEnabled()));
+ std::unique_ptr<base::Value> ret(
+ new base::Value(profile_sync_service->IsEncryptEverythingEnabled()));
return RespondNow(OneArgument(std::move(ret)));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698