| Index: chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc
|
| diff --git a/chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc b/chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc
|
| index 5491372a2a477a732c3b19489124fdfa42ed9b75..8d9d7254eb01f03f2db994be38aef3bd9fa2ec50 100644
|
| --- a/chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc
|
| +++ b/chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc
|
| @@ -136,11 +136,11 @@ bool ChromeContentBrowserClientPluginsPart::IsPluginAllowedToUseDevChannelAPIs(
|
| return true;
|
| }
|
| #endif
|
| - chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
|
| + version_info::Channel channel = chrome::VersionInfo::GetChannel();
|
| // Allow dev channel APIs to be used on "Canary", "Dev", and "Unknown"
|
| // releases of Chrome. Permitting "Unknown" allows these APIs to be used on
|
| // Chromium builds as well.
|
| - return channel <= chrome::VersionInfo::CHANNEL_DEV;
|
| + return channel <= version_info::Channel::DEV;
|
| }
|
|
|
| void ChromeContentBrowserClientPluginsPart::DidCreatePpapiPlugin(
|
|
|