| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chromecast/base/pref_names.h" | 5 #include "chromecast/base/pref_names.h" |
| 6 | 6 |
| 7 namespace chromecast { |
| 7 namespace prefs { | 8 namespace prefs { |
| 8 | 9 |
| 9 // Boolean which specifies if remote debugging is enabled | 10 // Boolean which specifies if remote debugging is enabled |
| 10 const char kEnableRemoteDebugging[] = "enable_remote_debugging"; | 11 const char kEnableRemoteDebugging[] = "enable_remote_debugging"; |
| 11 | 12 |
| 12 // Boolean that specifies whether or not the client_id has been regenerated | 13 // Boolean that specifies whether or not the client_id has been regenerated |
| 13 // due to bug b/9487011. | 14 // due to bug b/9487011. |
| 14 const char kMetricsIsNewClientID[] = "user_experience_metrics.is_new_client_id"; | 15 const char kMetricsIsNewClientID[] = "user_experience_metrics.is_new_client_id"; |
| 15 | 16 |
| 16 // Whether or not to report metrics and crashes. | 17 // Whether or not to report metrics and crashes. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 // Number of times the renderer has become non-responsive since the last | 42 // Number of times the renderer has become non-responsive since the last |
| 42 // report. | 43 // report. |
| 43 const char kStabilityRendererHangCount[] = | 44 const char kStabilityRendererHangCount[] = |
| 44 "user_experience_metrics.stability.renderer_hang_count"; | 45 "user_experience_metrics.stability.renderer_hang_count"; |
| 45 | 46 |
| 46 // Total number of unclean system shutdowns since the last report. | 47 // Total number of unclean system shutdowns since the last report. |
| 47 const char kStabilitySystemUncleanShutdownCount[] = | 48 const char kStabilitySystemUncleanShutdownCount[] = |
| 48 "user_experience_metrics.stability.system_unclean_shutdowns"; | 49 "user_experience_metrics.stability.system_unclean_shutdowns"; |
| 49 | 50 |
| 50 } // namespace prefs | 51 } // namespace prefs |
| 52 } // namespace chromecast |
| OLD | NEW |