| Index: chrome/common/extensions/features/simple_feature.cc
|
| diff --git a/chrome/common/extensions/features/simple_feature.cc b/chrome/common/extensions/features/simple_feature.cc
|
| index 676c0c6d08db7d8afc2e329b17eb724068264488..e8ee3d5fcb32bf8824ce12988527fdfc3a4f7262 100644
|
| --- a/chrome/common/extensions/features/simple_feature.cc
|
| +++ b/chrome/common/extensions/features/simple_feature.cc
|
| @@ -14,6 +14,7 @@
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "chrome/common/chrome_switches.h"
|
| +#include "chrome/common/extensions/features/feature_channel.h"
|
|
|
| using chrome::VersionInfo;
|
|
|
| @@ -306,7 +307,7 @@ Feature::Availability SimpleFeature::IsAvailableToManifest(
|
| if (max_manifest_version_ != 0 && manifest_version > max_manifest_version_)
|
| return CreateAvailability(INVALID_MAX_MANIFEST_VERSION, type);
|
|
|
| - if (channel_has_been_set_ && channel_ < Feature::GetCurrentChannel())
|
| + if (channel_has_been_set_ && channel_ < GetCurrentChannel())
|
| return CreateAvailability(UNSUPPORTED_CHANNEL, type);
|
|
|
| return CreateAvailability(IS_AVAILABLE, type);
|
|
|