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

Unified Diff: chrome/installer/setup/installer_crash_reporting.cc

Issue 2619963005: Multi-install cleanups in setup. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | chrome/installer/setup/installer_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/installer_crash_reporting.cc
diff --git a/chrome/installer/setup/installer_crash_reporting.cc b/chrome/installer/setup/installer_crash_reporting.cc
index 961979d74b0fb2b226ac27436888349375300c49..137913a1ab84f2534ed5114ac389284c43868339 100644
--- a/chrome/installer/setup/installer_crash_reporting.cc
+++ b/chrome/installer/setup/installer_crash_reporting.cc
@@ -32,7 +32,6 @@ namespace {
// Crash Keys
const char kCurrentVersion[] = "current-version";
-const char kIsMultiInstall[] = "multi-install";
const char kIsSystemLevel[] = "system-level";
const char kOperation[] = "operation";
const char kStateKey[] = "state-key";
@@ -105,7 +104,6 @@ size_t RegisterCrashKeys() {
const base::debug::CrashKey kFixedKeys[] = {
{ crash_keys::kMetricsClientId, crash_keys::kSmallSize },
{ kCurrentVersion, crash_keys::kSmallSize },
- { kIsMultiInstall, crash_keys::kSmallSize },
{ kIsSystemLevel, crash_keys::kSmallSize },
{ kOperation, crash_keys::kSmallSize },
@@ -126,7 +124,6 @@ void SetInitialCrashKeys(const InstallerState& state) {
using base::debug::SetCrashKeyValue;
SetCrashKeyValue(kOperation, OperationToString(state.operation()));
- SetCrashKeyValue(kIsMultiInstall, "false");
SetCrashKeyValue(kIsSystemLevel, state.system_install() ? "true" : "false");
const base::string16 state_key = state.state_key();
« no previous file with comments | « no previous file | chrome/installer/setup/installer_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698