Commit 0b3140b0 authored by Michael Spang's avatar Michael Spang Committed by Commit Bot

chromecast: Use https for crash uploads

Crash dumps contain sensitive data.

Bug: b/74372631
Test: kill -SEGV cast_shell and check for successful upload

Change-Id: I2c3877477bd652708838124ae43d1e24766e8edf
Reviewed-on: https://chromium-review.googlesource.com/955342
Commit-Queue: Michael Spang <spang@chromium.org>
Reviewed-by: default avatarStephen Lanham <slan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#541887}
parent df3b7bf7
...@@ -16,8 +16,8 @@ const char kSwitchValueTrue[] = "true"; ...@@ -16,8 +16,8 @@ const char kSwitchValueTrue[] = "true";
const char kSwitchValueFalse[] = "false"; const char kSwitchValueFalse[] = "false";
// Server url to upload crash data to. // Server url to upload crash data to.
// Default is "http://clients2.google.com/cr/report" for prod devices. // Default is "https://clients2.google.com/cr/report" for prod devices.
// Default is "http://clients2.google.com/cr/staging_report" for non prod. // Default is "https://clients2.google.com/cr/staging_report" for non prod.
const char kCrashServerUrl[] = "crash-server-url"; const char kCrashServerUrl[] = "crash-server-url";
// Enable file accesses. It should not be enabled for most Cast devices. // Enable file accesses. It should not be enabled for most Cast devices.
......
...@@ -39,8 +39,8 @@ namespace { ...@@ -39,8 +39,8 @@ namespace {
const char kProductName[] = "Eureka"; const char kProductName[] = "Eureka";
const char kCrashServerStaging[] = const char kCrashServerStaging[] =
"http://clients2.google.com/cr/staging_report"; "https://clients2.google.com/cr/staging_report";
const char kCrashServerProduction[] = "http://clients2.google.com/cr/report"; const char kCrashServerProduction[] = "https://clients2.google.com/cr/report";
typedef std::vector<std::unique_ptr<DumpInfo>> DumpList; typedef std::vector<std::unique_ptr<DumpInfo>> DumpList;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment