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

Unified Diff: chrome/browser/ui/webui/signin/sync_confirmation_handler.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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/ui/webui/signin/sync_confirmation_handler.cc
diff --git a/chrome/browser/ui/webui/signin/sync_confirmation_handler.cc b/chrome/browser/ui/webui/signin/sync_confirmation_handler.cc
index 1bc5644546035a29c62f207779a342985e57d0bd..4cd0b1401677267fb904a5aa9114c723ebacb945 100644
--- a/chrome/browser/ui/webui/signin/sync_confirmation_handler.cc
+++ b/chrome/browser/ui/webui/signin/sync_confirmation_handler.cc
@@ -86,7 +86,7 @@ void SyncConfirmationHandler::SetUserImageURL(const std::string& picture_url) {
// Use the placeholder avatar icon until the account picture URL is fetched.
picture_url_to_load = profiles::GetPlaceholderAvatarIconUrl();
}
- base::StringValue picture_url_value(picture_url_to_load);
+ base::Value picture_url_value(picture_url_to_load);
web_ui()->CallJavascriptFunctionUnsafe("sync.confirmation.setUserImageURL",
picture_url_value);
}

Powered by Google App Engine
This is Rietveld 408576698