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

Unified Diff: chrome/browser/ui/webui/crashes_ui.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
« no previous file with comments | « chrome/browser/ui/webui/chromeos/set_time_ui.cc ('k') | chrome/browser/ui/webui/device_log_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/crashes_ui.cc
diff --git a/chrome/browser/ui/webui/crashes_ui.cc b/chrome/browser/ui/webui/crashes_ui.cc
index 175dd11dd1bc34f01dc0fadbcba5a42dad0d61a5..e2d64ce333767de1091e49a701eeb39574844e2a 100644
--- a/chrome/browser/ui/webui/crashes_ui.cc
+++ b/chrome/browser/ui/webui/crashes_ui.cc
@@ -191,9 +191,9 @@ void CrashesDOMHandler::UpdateUI() {
base::Value enabled(crash_reporting_enabled);
base::Value dynamic_backend(system_crash_reporter);
base::Value manual_uploads(support_manual_uploads);
- base::StringValue version(version_info::GetVersionNumber());
- base::StringValue os_string(base::SysInfo::OperatingSystemName() + " " +
- base::SysInfo::OperatingSystemVersion());
+ base::Value version(version_info::GetVersionNumber());
+ base::Value os_string(base::SysInfo::OperatingSystemName() + " " +
+ base::SysInfo::OperatingSystemVersion());
std::vector<const base::Value*> args;
args.push_back(&enabled);
« no previous file with comments | « chrome/browser/ui/webui/chromeos/set_time_ui.cc ('k') | chrome/browser/ui/webui/device_log_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698