Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| 9 | |
| 10 #include "base/debug/crash_logging.h" | |
| 11 | |
| 12 namespace installer { | |
| 13 | |
| 14 class InstallerState; | |
| 15 | |
| 16 // Set up the crash reporting system for the installer. | |
|
grt (UTC plus 2)
2015/11/26 21:37:18
nit "Sets up..." as per https://google.github.io/s
Joe Mason
2015/11/26 22:28:54
Done.
| |
| 17 void ConfigureCrashReporting(const InstallerState& installer_state); | |
| 18 | |
| 19 // Add the installer's default crash keys to |keys|. | |
|
grt (UTC plus 2)
2015/11/26 21:37:18
What does "default" mean? If this is to support ot
Joe Mason
2015/11/26 22:28:54
Done.
| |
| 20 void GetCrashKeys(std::vector<base::debug::CrashKey>* keys); | |
| 21 | |
| 22 // Set all crash keys that are available after initializing |installer_state| | |
|
grt (UTC plus 2)
2015/11/26 21:37:18
I think you're describing an implementation detail
Joe Mason
2015/11/26 22:28:54
Since these keys don't vary, there's no need to ca
| |
| 23 // and do not vary during execution. | |
| 24 void SetInitialCrashKeys(const InstallerState& installer_state); | |
| 25 | |
| 26 } // namespace installer | |
| 27 | |
| 28 #endif // CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTING_H_ | |
| OLD | NEW |