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

Unified Diff: chrome/browser/ui/webui/settings/settings_manage_profile_handler.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/ui/webui/settings/settings_manage_profile_handler.cc
diff --git a/chrome/browser/ui/webui/settings/settings_manage_profile_handler.cc b/chrome/browser/ui/webui/settings/settings_manage_profile_handler.cc
index 82384e694a6f18b5a0c002fab0ab85c8de94574f..34a976b962dfaf4c60bdb1f0469b17cd166a400d 100644
--- a/chrome/browser/ui/webui/settings/settings_manage_profile_handler.cc
+++ b/chrome/browser/ui/webui/settings/settings_manage_profile_handler.cc
@@ -205,7 +205,7 @@ void ManageProfileHandler::OnHasProfileShortcuts(
const std::string& callback_id, bool has_shortcuts) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
ResolveJavascriptCallback(base::StringValue(callback_id),
- base::FundamentalValue(has_shortcuts));
+ base::Value(has_shortcuts));
}
void ManageProfileHandler::HandleAddProfileShortcut(

Powered by Google App Engine
This is Rietveld 408576698