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

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

Issue 103943006: Let MetricsService know about some Android Activities (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaning Created 7 years 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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 extern const char kStabilitySavedSystemProfileHash[]; 469 extern const char kStabilitySavedSystemProfileHash[];
470 extern const char kStabilityRendererCrashCount[]; 470 extern const char kStabilityRendererCrashCount[];
471 extern const char kStabilityExtensionRendererCrashCount[]; 471 extern const char kStabilityExtensionRendererCrashCount[];
472 extern const char kStabilityLaunchTimeSec[]; 472 extern const char kStabilityLaunchTimeSec[];
473 extern const char kStabilityLastTimestampSec[]; 473 extern const char kStabilityLastTimestampSec[];
474 extern const char kStabilityRendererHangCount[]; 474 extern const char kStabilityRendererHangCount[];
475 extern const char kStabilityChildProcessCrashCount[]; 475 extern const char kStabilityChildProcessCrashCount[];
476 extern const char kStabilityOtherUserCrashCount[]; 476 extern const char kStabilityOtherUserCrashCount[];
477 extern const char kStabilityKernelCrashCount[]; 477 extern const char kStabilityKernelCrashCount[];
478 extern const char kStabilitySystemUncleanShutdownCount[]; 478 extern const char kStabilitySystemUncleanShutdownCount[];
479 #if defined(OS_ANDROID)
480 extern const char kStabilityForegroundActivity[];
481 extern const char kStabilityLaunchedActivityFlags[];
482 extern const char kStabilityLaunchCountMainActivity[];
483 extern const char kStabilityLaunchCountFullScreenActivity[];
484 extern const char kStabilityCrashCountMainActivity[];
485 extern const char kStabilityCrashCountFullScreenActivity[];
486 #endif
479 487
480 extern const char kStabilityBreakpadRegistrationSuccess[]; 488 extern const char kStabilityBreakpadRegistrationSuccess[];
481 extern const char kStabilityBreakpadRegistrationFail[]; 489 extern const char kStabilityBreakpadRegistrationFail[];
482 extern const char kStabilityDebuggerPresent[]; 490 extern const char kStabilityDebuggerPresent[];
483 extern const char kStabilityDebuggerNotPresent[]; 491 extern const char kStabilityDebuggerNotPresent[];
484 492
485 extern const char kStabilityPluginStats[]; 493 extern const char kStabilityPluginStats[];
486 extern const char kStabilityPluginName[]; 494 extern const char kStabilityPluginName[];
487 extern const char kStabilityPluginLaunches[]; 495 extern const char kStabilityPluginLaunches[];
488 extern const char kStabilityPluginInstances[]; 496 extern const char kStabilityPluginInstances[];
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 #endif 946 #endif
939 947
940 #if defined(OS_WIN) 948 #if defined(OS_WIN)
941 extern const char kOsPasswordBlank[]; 949 extern const char kOsPasswordBlank[];
942 extern const char kOsPasswordLastChanged[]; 950 extern const char kOsPasswordLastChanged[];
943 #endif 951 #endif
944 952
945 } // namespace prefs 953 } // namespace prefs
946 954
947 #endif // CHROME_COMMON_PREF_NAMES_H_ 955 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698