forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstability_data_names.h
28 lines (23 loc) · 1.04 KB
/
stability_data_names.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_BROWSER_WATCHER_STABILITY_DATA_NAMES_H_
#define COMPONENTS_BROWSER_WATCHER_STABILITY_DATA_NAMES_H_
namespace browser_watcher {
// Alphabetical list of stability data names.
extern const char kStabilityChannel[];
extern const char kStabilityExecutionPhase[];
extern const char kStabilityKeepAlive[];
extern const char kStabilityPlatform[];
extern const char kStabilityProcessType[];
extern const char kStabilityProduct[];
extern const char kStabilityReporterChannel[];
extern const char kStabilityReporterPlatform[];
extern const char kStabilityReporterProduct[];
extern const char kStabilityReporterVersion[];
extern const char kStabilityRestartAllowed[];
extern const char kStabilitySpecialBuild[];
extern const char kStabilityStartTimestamp[];
extern const char kStabilityVersion[];
} // namespace browser_watcher
#endif // COMPONENTS_BROWSER_WATCHER_STABILITY_DATA_NAMES_H_