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

Unified Diff: ios/chrome/browser/ui/webui/crashes_ui.cc

Issue 2325713002: Manual crash uploads for mac and win (Closed)
Patch Set: Created 4 years, 3 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 | « components/upload_list/upload_list.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/webui/crashes_ui.cc
diff --git a/ios/chrome/browser/ui/webui/crashes_ui.cc b/ios/chrome/browser/ui/webui/crashes_ui.cc
index a38554fa35021a66a7733027082bc0a4deb86cc3..6286a34f44c4f216a42e5eaabd53396c9d78a36a 100644
--- a/ios/chrome/browser/ui/webui/crashes_ui.cc
+++ b/ios/chrome/browser/ui/webui/crashes_ui.cc
@@ -125,6 +125,7 @@ void CrashesDOMHandler::UpdateUI() {
crash::UploadListToValue(upload_list_.get(), &crash_list);
base::FundamentalValue enabled(crash_reporting_enabled);
base::FundamentalValue dynamic_backend(false);
+ base::FundamentalValue manual_uploads(false);
base::StringValue version(version_info::GetVersionNumber());
base::StringValue os_string(base::SysInfo::OperatingSystemName() + " " +
base::SysInfo::OperatingSystemVersion());
@@ -132,6 +133,7 @@ void CrashesDOMHandler::UpdateUI() {
std::vector<const base::Value*> args;
args.push_back(&enabled);
args.push_back(&dynamic_backend);
+ args.push_back(&manual_uploads);
args.push_back(&crash_list);
args.push_back(&version);
args.push_back(&os_string);
« no previous file with comments | « components/upload_list/upload_list.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698