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

Side by Side Diff: chrome/installer/setup/installer_crash_keys.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: Move command-line switch refactor to another patch for easier review 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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698