Index: chrome/browser/performance_monitor/constants.cc |
diff --git a/chrome/browser/performance_monitor/constants.cc b/chrome/browser/performance_monitor/constants.cc |
index 3dcacb9a559967aad953d88f923d8416cb72e2d9..7850a8840f2405cdfdf999745a777d8295b189f2 100644 |
--- a/chrome/browser/performance_monitor/constants.cc |
+++ b/chrome/browser/performance_monitor/constants.cc |
@@ -8,10 +8,16 @@ namespace performance_monitor { |
// The key to insert/retrieve information about the chrome version from the |
// database. |
-const char kStateChromeVersion[] = "chrome_version"; |
const char kMetricNotFoundError[] = "Mertic details not found."; |
const char kProcessChromeAggregate[] = "chrome_aggregate"; |
const char kSampleMetricDescription[] = "A sample metric."; |
const char kSampleMetricName[] = "SAMPLE"; |
+// The state token to track Chrome versions in the database. |
+const char kStateChromeVersion[] = "chrome_version"; |
+ |
+// The state token to precede a profile's name, to prevent any possible naming |
+// collisions in the database. |
+const char kStateProfile[] = "profile"; |
Yoyo Zhou
2012/07/10 02:35:06
This should probably have "Prefix" in its name.
Devlin
2012/07/10 17:18:32
Done.
|
+ |
} // namespace performance_monitor |