| 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..2f547cdad8c324773ca2ed9a25c7a609e098dc95 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(
|
|
|