| Index: chrome/browser/process_singleton_win.cc
|
| diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browser/process_singleton_win.cc
|
| index 45d98416a4c2374bd213ff1943a3819f7669067c..5706f7bd7642cb914227fd49b13dc102efdcd1d8 100644
|
| --- a/chrome/browser/process_singleton_win.cc
|
| +++ b/chrome/browser/process_singleton_win.cc
|
| @@ -223,10 +223,8 @@ void SendFailedRdvReport(const base::Process& process, DWORD thread_id) {
|
| // TODO(manzagop): add a metric for the number of captured hang reports, for
|
| // comparison with uploaded count?
|
|
|
| - // Only report on canary (or unspecified).
|
| - const version_info::Channel channel = chrome::GetChannel();
|
| - if (channel != version_info::Channel::UNKNOWN &&
|
| - channel != version_info::Channel::CANARY) {
|
| + // Only report on canary.
|
| + if (chrome::GetChannel() != version_info::Channel::CANARY) {
|
| return;
|
| }
|
| // TODO(manzagop): add a metric for the number of times this does not match.
|
|
|