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

Side by Side Diff: chrome/installer/setup/setup_constants.cc

Issue 1475643004: Add crash keys for the installer covering simple InstallerState fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add previous version, plus some comments Created 5 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/installer/setup/setup_constants.h" 5 #include "chrome/installer/setup/setup_constants.h"
6 6
7 namespace installer { 7 namespace installer {
8 8
9 // Elements that make up install paths. 9 // Elements that make up install paths.
10 const wchar_t kChromeArchive[] = L"chrome.7z"; 10 const wchar_t kChromeArchive[] = L"chrome.7z";
(...skipping 17 matching lines...) Expand all
28 const char kDelay[] = "delay"; 28 const char kDelay[] = "delay";
29 29
30 // Set the MSI-managed DisplayVersion in the registry to match Chrome's real 30 // Set the MSI-managed DisplayVersion in the registry to match Chrome's real
31 // version number. The parameter to this option specifies the product-id in 31 // version number. The parameter to this option specifies the product-id in
32 // the registry under HKLM. 32 // the registry under HKLM.
33 const char kSetDisplayVersionProduct[] = "set-display-version-product"; 33 const char kSetDisplayVersionProduct[] = "set-display-version-product";
34 const char kSetDisplayVersionValue[] = "set-display-version-value"; 34 const char kSetDisplayVersionValue[] = "set-display-version-value";
35 35
36 } // namespace switches 36 } // namespace switches
37 37
38 namespace crash_keys {
39
40 const char kCurrentVersion[] = "current-version";
41 const char kDistributionType[] = "dist-type";
42 const char kOperation[] = "operation";
43 const char kPackageType[] = "package-type";
grt (UTC plus 2) 2015/11/25 16:44:09 since this is keyed off the --multi-install comman
Joe Mason 2015/11/25 17:20:48 Shouldn't we plan for expansion such as adding fur
grt (UTC plus 2) 2015/11/25 17:44:01 Yeah, about that... :-) We're working on removing
44 const char kPrivilegeLevel[] = "priv-level";
grt (UTC plus 2) 2015/11/25 16:44:09 likewise, i think "system-level" with ("false", "t
45 const char kStateKey[] = "state-key";
46
47 } // namespace crash_keys
48
38 } // namespace installer 49 } // namespace installer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698