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

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

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 // Defines all the command-line switches used by Chrome installer. 5 // Defines all the command-line switches used by Chrome installer.
6 6
7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ 7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ 8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
9 9
10 namespace installer { 10 namespace installer {
(...skipping 10 matching lines...) Expand all
21 extern const wchar_t kMediaPlayerRegPath[]; 21 extern const wchar_t kMediaPlayerRegPath[];
22 22
23 namespace switches { 23 namespace switches {
24 24
25 extern const char kDelay[]; 25 extern const char kDelay[];
26 extern const char kSetDisplayVersionProduct[]; 26 extern const char kSetDisplayVersionProduct[];
27 extern const char kSetDisplayVersionValue[]; 27 extern const char kSetDisplayVersionValue[];
28 28
29 } // namespace switches 29 } // namespace switches
30 30
31 namespace crash_keys {
32
33 // Describes the version installed before starting the installer.
34 extern const char kCurrentVersion[];
35
36 // Describes a BrowserDistribution::Type.
37 extern const char kDistributionType[];
38
39 // Describes an InstallerState::Operation.
40 extern const char kOperation[];
41
42 // Describes an InstallerState::PackageType.
43 extern const char kPackageType[];
44
45 // Describes an InstallerState::Level.
46 extern const char kPrivilegeLevel[];
47
48 extern const char kStateKey[];
49
50 } // namespace crash_keys
51
31 } // namespace installer 52 } // namespace installer
32 53
33 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ 54 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698