blob: 6af4e55e0e6fa87b0b531742c020eb989a207d1e (
plain)
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
|
// Copyright (c) 2012 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 CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_
#define CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_
namespace performance_monitor {
// TODO(chebert): i18n
extern const char kMetricNotFoundError[];
// Any metric that is not associated with a specific activity will use this as
// its activity.
extern const char kProcessChromeAggregate[];
// When you add a metric type, make sure to edit CPMDatabase::InitMetricDetails
// TODO(mtytel): When you make real metrics, delete the sample metric.
extern const char kSampleMetricDescription[];
extern const char kSampleMetricName[];
extern const char kStateChromeVersion[];
} // namespace performance_monitor
#endif // CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_
|