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

Side by Side Diff: chrome/common/pref_names.cc

Issue 103943006: Let MetricsService know about some Android Activities (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding more activities, addressing comments Created 6 years, 12 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 | Annotate | Revision Log
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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 1486
1487 // On Chrome OS, total number of kernel crashes since the last report. 1487 // On Chrome OS, total number of kernel crashes since the last report.
1488 const char kStabilityKernelCrashCount[] = 1488 const char kStabilityKernelCrashCount[] =
1489 "user_experience_metrics.stability.kernel_crash_count"; 1489 "user_experience_metrics.stability.kernel_crash_count";
1490 1490
1491 // On Chrome OS, total number of unclean system shutdowns since the 1491 // On Chrome OS, total number of unclean system shutdowns since the
1492 // last report. 1492 // last report.
1493 const char kStabilitySystemUncleanShutdownCount[] = 1493 const char kStabilitySystemUncleanShutdownCount[] =
1494 "user_experience_metrics.stability.system_unclean_shutdowns"; 1494 "user_experience_metrics.stability.system_unclean_shutdowns";
1495 1495
1496 #if defined(OS_ANDROID)
1497 // Activity type that is currently in the foreground for the UMA session.
1498 // Uses the ActivityTypeIds::Type enum.
1499 const char kStabilityForegroundActivityType[] =
1500 "user_experience_metrics.stability.current_foreground_activity_type";
1501
1502 // Tracks which Activities were launched during the last session.
1503 // See |metrics_service_android.cc| for its usage.
1504 const char kStabilityLaunchedActivityFlags[] =
1505 "user_experience_metrics.stability.launched_activity_flags";
1506
1507 // List pref: Counts how many times each Activity was launched.
1508 // Indexed into by ActivityTypeIds::Type.
1509 const char kStabilityLaunchedActivityCounts[] =
1510 "user_experience_metrics.stability.launched_activity_counts";
1511
1512 // List pref: Counts how many times each Activity type was in the foreground
1513 // when a UMA session failed to be shut down properly.
1514 // Indexed into by ActivityTypeIds::Type.
1515 const char kStabilityCrashedActivityCounts[] =
1516 "user_experience_metrics.stability.crashed_activity_counts";
1517 #endif
1518
1496 // Number of times the browser has been able to register crash reporting. 1519 // Number of times the browser has been able to register crash reporting.
1497 const char kStabilityBreakpadRegistrationSuccess[] = 1520 const char kStabilityBreakpadRegistrationSuccess[] =
1498 "user_experience_metrics.stability.breakpad_registration_ok"; 1521 "user_experience_metrics.stability.breakpad_registration_ok";
1499 1522
1500 // Number of times the browser has failed to register crash reporting. 1523 // Number of times the browser has failed to register crash reporting.
1501 const char kStabilityBreakpadRegistrationFail[] = 1524 const char kStabilityBreakpadRegistrationFail[] =
1502 "user_experience_metrics.stability.breakpad_registration_fail"; 1525 "user_experience_metrics.stability.breakpad_registration_fail";
1503 1526
1504 // Number of times the browser has been run under a debugger. 1527 // Number of times the browser has been run under a debugger.
1505 const char kStabilityDebuggerPresent[] = 1528 const char kStabilityDebuggerPresent[] =
(...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after
2673 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2696 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2674 2697
2675 // The number of seconds since epoch that the OS password was last changed. 2698 // The number of seconds since epoch that the OS password was last changed.
2676 const char kOsPasswordLastChanged[] = 2699 const char kOsPasswordLastChanged[] =
2677 "password_manager.os_password_last_changed"; 2700 "password_manager.os_password_last_changed";
2678 #endif 2701 #endif
2679 2702
2680 // Whether DNS Quick Check is disabled in proxy resolution. 2703 // Whether DNS Quick Check is disabled in proxy resolution.
2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2704 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2682 } // namespace prefs 2705 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698