Index: chrome/browser/ui/hung_plugin_tab_helper.cc |
diff --git a/chrome/browser/ui/hung_plugin_tab_helper.cc b/chrome/browser/ui/hung_plugin_tab_helper.cc |
index afcd1e8d8590f6aef2e901b3bc85b3fa5d98ff82..12ef3be61cf7f17c858a6cea049d54c659488f53 100644 |
--- a/chrome/browser/ui/hung_plugin_tab_helper.cc |
+++ b/chrome/browser/ui/hung_plugin_tab_helper.cc |
@@ -355,8 +355,8 @@ void HungPluginTabHelper::KillPlugin(int child_id) { |
// diagnose inter-process deadlocks. |
// Only do that on the Canary channel, for 20% of pepper plugin hangs. |
if (base::RandInt(0, 100) < 20) { |
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); |
- if (channel == chrome::VersionInfo::CHANNEL_CANARY) { |
+ version_info::Channel channel = chrome::VersionInfo::GetChannel(); |
+ if (channel == version_info::Channel::CANARY) { |
scoped_ptr<OwnedHandleVector> renderer_handles(new OwnedHandleVector); |
HANDLE current_process = ::GetCurrentProcess(); |
content::RenderProcessHost::iterator renderer_iter = |