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

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

Issue 137623002: Let MetricsService know about some Android Activities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 10 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/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 1487 matching lines...) Expand 10 before | Expand all | Expand 10 after
1498 1498
1499 // On Chrome OS, total number of kernel crashes since the last report. 1499 // On Chrome OS, total number of kernel crashes since the last report.
1500 const char kStabilityKernelCrashCount[] = 1500 const char kStabilityKernelCrashCount[] =
1501 "user_experience_metrics.stability.kernel_crash_count"; 1501 "user_experience_metrics.stability.kernel_crash_count";
1502 1502
1503 // On Chrome OS, total number of unclean system shutdowns since the 1503 // On Chrome OS, total number of unclean system shutdowns since the
1504 // last report. 1504 // last report.
1505 const char kStabilitySystemUncleanShutdownCount[] = 1505 const char kStabilitySystemUncleanShutdownCount[] =
1506 "user_experience_metrics.stability.system_unclean_shutdowns"; 1506 "user_experience_metrics.stability.system_unclean_shutdowns";
1507 1507
1508 #if defined(OS_ANDROID)
1509 // Activity type that is currently in the foreground for the UMA session.
1510 // Uses the ActivityTypeIds::Type enum.
1511 const char kStabilityForegroundActivityType[] =
1512 "user_experience_metrics.stability.current_foreground_activity_type";
1513
1514 // Tracks which Activities were launched during the last session.
1515 // See |metrics_service_android.cc| for its usage.
1516 const char kStabilityLaunchedActivityFlags[] =
1517 "user_experience_metrics.stability.launched_activity_flags";
1518
1519 // List pref: Counts how many times each Activity was launched.
1520 // Indexed into by ActivityTypeIds::Type.
1521 const char kStabilityLaunchedActivityCounts[] =
1522 "user_experience_metrics.stability.launched_activity_counts";
1523
1524 // List pref: Counts how many times each Activity type was in the foreground
1525 // when a UMA session failed to be shut down properly.
1526 // Indexed into by ActivityTypeIds::Type.
1527 const char kStabilityCrashedActivityCounts[] =
1528 "user_experience_metrics.stability.crashed_activity_counts";
1529 #endif
1530
1508 // Number of times the browser has been able to register crash reporting. 1531 // Number of times the browser has been able to register crash reporting.
1509 const char kStabilityBreakpadRegistrationSuccess[] = 1532 const char kStabilityBreakpadRegistrationSuccess[] =
1510 "user_experience_metrics.stability.breakpad_registration_ok"; 1533 "user_experience_metrics.stability.breakpad_registration_ok";
1511 1534
1512 // Number of times the browser has failed to register crash reporting. 1535 // Number of times the browser has failed to register crash reporting.
1513 const char kStabilityBreakpadRegistrationFail[] = 1536 const char kStabilityBreakpadRegistrationFail[] =
1514 "user_experience_metrics.stability.breakpad_registration_fail"; 1537 "user_experience_metrics.stability.breakpad_registration_fail";
1515 1538
1516 // Number of times the browser has been run under a debugger. 1539 // Number of times the browser has been run under a debugger.
1517 const char kStabilityDebuggerPresent[] = 1540 const char kStabilityDebuggerPresent[] =
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after
2649 2672
2650 // The number of seconds since epoch that the OS password was last changed. 2673 // The number of seconds since epoch that the OS password was last changed.
2651 const char kOsPasswordLastChanged[] = 2674 const char kOsPasswordLastChanged[] =
2652 "password_manager.os_password_last_changed"; 2675 "password_manager.os_password_last_changed";
2653 #endif 2676 #endif
2654 2677
2655 // Whether DNS Quick Check is disabled in proxy resolution. 2678 // Whether DNS Quick Check is disabled in proxy resolution.
2656 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2679 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2657 2680
2658 } // namespace prefs 2681 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698