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

Side by Side Diff: chrome/browser/performance_monitor/constants.cc

Issue 10656052: Performance monitor stats gathering. (Closed) Base URL: http://git.chromium.org/chromium/src.git@cpm_main
Patch Set: Changes per comments Created 8 years, 5 months 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/performance_monitor/constants.h" 5 #include "chrome/browser/performance_monitor/constants.h"
6 6
7 namespace performance_monitor { 7 namespace performance_monitor {
8 8
9 const char kMetricCPUUsage[] = "cpu_usage";
Devlin 2012/07/11 16:28:08 Provide at least one comment for this group.
mitchellwrosen 2012/07/11 18:30:18 Done.
10 const char kMetricPrivateMemoryUsage[] = "private_memory_usage";
11 const char kMetricSharedMemoryUsage[] = "shared_memory_usage";
9 // The key to insert/retrieve information about the chrome version from the 12 // The key to insert/retrieve information about the chrome version from the
10 // database. 13 // database.
11 const char kStateChromeVersion[] = "chrome_version"; 14 const char kStateChromeVersion[] = "chrome_version";
12 const char kMetricNotFoundError[] = "Mertic details not found."; 15 const char kMetricNotFoundError[] = "Mertic details not found.";
13 const char kProcessChromeAggregate[] = "chrome_aggregate"; 16 const char kProcessChromeAggregate[] = "chrome_aggregate";
14 const char kSampleMetricDescription[] = "A sample metric."; 17 const char kSampleMetricDescription[] = "A sample metric.";
15 const char kSampleMetricName[] = "SAMPLE"; 18 const char kSampleMetricName[] = "SAMPLE";
16 19
17 } // namespace performance_monitor 20 } // namespace performance_monitor
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698