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

Side by Side Diff: chrome/installer/setup/installer_crash_reporting.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: Missed include in last patch 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTING_H_
6 #define CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTING_H_
7
8 #include <vector>
grt (UTC plus 2) 2015/11/27 15:05:17 unused. :-)
9
10 #include "base/debug/crash_logging.h"
grt (UTC plus 2) 2015/11/27 15:05:16 move to .cc file
11
12 namespace installer {
13
14 class InstallerState;
15
16 // Sets up the crash reporting system for the installer.
17 void ConfigureCrashReporting(const InstallerState& installer_state);
18
19 // Registers all crash keys used by the installer.
20 size_t RegisterCrashKeys();
21
22 // Sets all crash keys that are available during process startup. These do not
23 // vary during execution so this function will not need to be called more than
24 // once.
25 void SetInitialCrashKeys(const InstallerState& installer_state);
26
27 } // namespace installer
28
29 #endif // CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTING_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698