OLD | NEW |
---|---|
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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1008 | 1008 |
1009 // Array of strings that are each UMA logs that were not sent because the | 1009 // Array of strings that are each UMA logs that were not sent because the |
1010 // browser terminated before these accumulated metrics could be sent. These | 1010 // browser terminated before these accumulated metrics could be sent. These |
1011 // logs typically include histograms and memory reports, as well as ongoing | 1011 // logs typically include histograms and memory reports, as well as ongoing |
1012 // user activities. Currently we store both XML and protobuf versions. | 1012 // user activities. Currently we store both XML and protobuf versions. |
1013 const char kMetricsOngoingLogsXml[] = | 1013 const char kMetricsOngoingLogsXml[] = |
1014 "user_experience_metrics.ongoing_logs"; | 1014 "user_experience_metrics.ongoing_logs"; |
1015 const char kMetricsOngoingLogsProto[] = | 1015 const char kMetricsOngoingLogsProto[] = |
1016 "user_experience_metrics.ongoing_logs_as_protobufs"; | 1016 "user_experience_metrics.ongoing_logs_as_protobufs"; |
1017 | 1017 |
1018 // String serialized form of variations seed protobuf | |
MAD
2012/05/04 12:29:57
'.' at the end of the comment sentence please.
jwd
2012/05/04 19:33:06
Done.
| |
1019 const char kVariationsSeed[] = "variations_seed"; | |
1020 | |
1018 // Where profile specific metrics are placed. | 1021 // Where profile specific metrics are placed. |
1019 const char kProfileMetrics[] = "user_experience_metrics.profiles"; | 1022 const char kProfileMetrics[] = "user_experience_metrics.profiles"; |
1020 | 1023 |
1021 // The metrics for a profile are stored as dictionary values under the | 1024 // The metrics for a profile are stored as dictionary values under the |
1022 // path kProfileMetrics. The individual metrics are placed under the path | 1025 // path kProfileMetrics. The individual metrics are placed under the path |
1023 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. | 1026 // kProfileMetrics.kProfilePrefix<hashed-profile-id>. |
1024 const char kProfilePrefix[] = "profile-"; | 1027 const char kProfilePrefix[] = "profile-"; |
1025 | 1028 |
1026 // True if the previous run of the program exited cleanly. | 1029 // True if the previous run of the program exited cleanly. |
1027 const char kStabilityExitedCleanly[] = | 1030 const char kStabilityExitedCleanly[] = |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1843 const char kRailBreakProportion[] = | 1846 const char kRailBreakProportion[] = |
1844 "gesture.rail_break_proportion"; | 1847 "gesture.rail_break_proportion"; |
1845 const char kRailStartProportion[] = | 1848 const char kRailStartProportion[] = |
1846 "gesture.rail_start_proportion"; | 1849 "gesture.rail_start_proportion"; |
1847 #endif | 1850 #endif |
1848 | 1851 |
1849 // Indicates whether the browser is in managed mode. | 1852 // Indicates whether the browser is in managed mode. |
1850 const char kInManagedMode[] = "managed_mode"; | 1853 const char kInManagedMode[] = "managed_mode"; |
1851 | 1854 |
1852 } // namespace prefs | 1855 } // namespace prefs |
OLD | NEW |