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

Unified Diff: chrome/browser/metrics/thread_watcher.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/metrics/thread_watcher.cc
diff --git a/chrome/browser/metrics/thread_watcher.cc b/chrome/browser/metrics/thread_watcher.cc
index 370fc9c013f17d098e5ba64d2f9f9be9b257410f..4e76eee62f37f3aa85d58f06b45baf3d8757e6af 100644
--- a/chrome/browser/metrics/thread_watcher.cc
+++ b/chrome/browser/metrics/thread_watcher.cc
@@ -449,10 +449,10 @@ void ThreadWatcherList::ParseCommandLine(
// Increase the unresponsive_threshold on the Stable and Beta channels to
// reduce the number of crashes due to ThreadWatcher.
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_STABLE) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::Channel::STABLE) {
*unresponsive_threshold *= 4;
- } else if (channel == chrome::VersionInfo::CHANNEL_BETA) {
+ } else if (channel == version_info::Channel::BETA) {
*unresponsive_threshold *= 2;
}
@@ -469,7 +469,7 @@ void ThreadWatcherList::ParseCommandLine(
if (command_line.HasSwitch(switches::kCrashOnHangThreads)) {
crash_on_hang_thread_names =
command_line.GetSwitchValueASCII(switches::kCrashOnHangThreads);
- } else if (channel != chrome::VersionInfo::CHANNEL_STABLE) {
+ } else if (channel != version_info::Channel::STABLE) {
// Default to crashing the browser if UI or IO or FILE threads are not
// responsive except in stable channel.
crash_on_hang_thread_names = base::StringPrintf(
@@ -542,9 +542,9 @@ void ThreadWatcherList::InitializeAndStartWatching(
// stable channel, disable ThreadWatcher in stable and unknown channels. We
// will also not collect histogram data in these channels until
// http://crbug.com/426203 is fixed.
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_STABLE ||
- channel == chrome::VersionInfo::CHANNEL_UNKNOWN) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::Channel::STABLE ||
+ channel == version_info::Channel::UNKNOWN) {
return;
}
@@ -919,11 +919,11 @@ void ShutdownWatcherHelper::Arm(const base::TimeDelta& duration) {
DCHECK(!shutdown_watchdog_);
base::TimeDelta actual_duration = duration;
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_STABLE) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::Channel::STABLE) {
actual_duration *= 20;
- } else if (channel == chrome::VersionInfo::CHANNEL_BETA ||
- channel == chrome::VersionInfo::CHANNEL_DEV) {
+ } else if (channel == version_info::Channel::BETA ||
+ channel == version_info::Channel::DEV) {
actual_duration *= 10;
}
« no previous file with comments | « chrome/browser/metrics/chrome_metrics_service_client.cc ('k') | chrome/browser/metrics/variations/variations_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698