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

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

Issue 28283002: Track execution phase of browser process when we log if the broswer has (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed jar's comments Created 7 years, 1 month 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome_frame/test/reliability/page_load_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome_frame/test/reliability/page_load_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698