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_KEYS_H_ | |
| 6 #define CHROME_INSTALLER_SETUP_INSTALLER_CRASH_KEYS_H_ | |
| 7 | |
|
grt (UTC plus 2)
2015/11/26 19:24:45
#include <vector>
Joe Mason
2015/11/26 20:49:05
Done.
| |
| 8 #include "base/debug/crash_logging.h" | |
| 9 | |
| 10 namespace installer { | |
| 11 | |
| 12 class InstallerState; | |
| 13 | |
| 14 void ConfigureCrashReporting(const InstallerState& installer_state); | |
|
grt (UTC plus 2)
2015/11/26 19:24:45
please add a doc comment for each of these (https:
Joe Mason
2015/11/26 20:49:05
Done.
| |
| 15 | |
| 16 void RegisterCrashKeys(std::vector<base::debug::CrashKey>& keys); | |
|
grt (UTC plus 2)
2015/11/26 19:24:45
GetCrashKeys is more accurate since this doesn't a
Joe Mason
2015/11/26 20:49:05
Done.
| |
| 17 | |
| 18 void SetStartingCrashKeys(const InstallerState& installer_state); | |
|
grt (UTC plus 2)
2015/11/26 19:24:45
nit: i prefer SetInitialCrashKeys
Joe Mason
2015/11/26 20:49:05
Done.
| |
| 19 | |
| 20 } // namespace installer | |
| 21 | |
| 22 #endif // CHROME_INSTALLER_SETUP_INSTALLER_CRASH_KEYS_H_ | |
| OLD | NEW |