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 #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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1353 | 1353 |
1354 // String serialized form of variations seed protobuf. | 1354 // String serialized form of variations seed protobuf. |
1355 const char kVariationsSeed[] = "variations_seed"; | 1355 const char kVariationsSeed[] = "variations_seed"; |
1356 | 1356 |
1357 // 64-bit integer serialization of the base::Time from the last seed received. | 1357 // 64-bit integer serialization of the base::Time from the last seed received. |
1358 const char kVariationsSeedDate[] = "variations_seed_date"; | 1358 const char kVariationsSeedDate[] = "variations_seed_date"; |
1359 | 1359 |
1360 // SHA-1 hash of the serialized variations seed data. | 1360 // SHA-1 hash of the serialized variations seed data. |
1361 const char kVariationsSeedHash[] = "variations_seed_hash"; | 1361 const char kVariationsSeedHash[] = "variations_seed_hash"; |
1362 | 1362 |
| 1363 // An enum value to indicate the execution phase the browser was in. |
| 1364 const char kStabilityExecutionPhase[] = |
| 1365 "user_experience_metrics.stability.execution_phase"; |
| 1366 |
1363 // True if the previous run of the program exited cleanly. | 1367 // True if the previous run of the program exited cleanly. |
1364 const char kStabilityExitedCleanly[] = | 1368 const char kStabilityExitedCleanly[] = |
1365 "user_experience_metrics.stability.exited_cleanly"; | 1369 "user_experience_metrics.stability.exited_cleanly"; |
1366 | 1370 |
1367 // Version string of previous run, which is used to assure that stability | 1371 // Version string of previous run, which is used to assure that stability |
1368 // metrics reported under current version reflect stability of the same version. | 1372 // metrics reported under current version reflect stability of the same version. |
1369 const char kStabilityStatsVersion[] = | 1373 const char kStabilityStatsVersion[] = |
1370 "user_experience_metrics.stability.stats_version"; | 1374 "user_experience_metrics.stability.stats_version"; |
1371 | 1375 |
1372 // Build time, in seconds since an epoch, which is used to assure that stability | 1376 // Build time, in seconds since an epoch, which is used to assure that stability |
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2555 // A dictionary pref which maps profile names to dictionary values which hold | 2559 // A dictionary pref which maps profile names to dictionary values which hold |
2556 // hashes of profile prefs that we track to detect changes that happen outside | 2560 // hashes of profile prefs that we track to detect changes that happen outside |
2557 // of Chrome. | 2561 // of Chrome. |
2558 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2562 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2559 | 2563 |
2560 // Stores a pair of local time and corresponding network time to bootstrap | 2564 // Stores a pair of local time and corresponding network time to bootstrap |
2561 // network time tracker when browser starts. | 2565 // network time tracker when browser starts. |
2562 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2566 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2563 | 2567 |
2564 } // namespace prefs | 2568 } // namespace prefs |
OLD | NEW |