Chromium Code Reviews| Index: extensions/common/features/complex_feature.cc |
| diff --git a/extensions/common/features/complex_feature.cc b/extensions/common/features/complex_feature.cc |
| index 9a330c1ff64166e83d4c752d8086c518d9549253..5f041dbbc982786192cf3db7d81f36cc041dcbc5 100644 |
| --- a/extensions/common/features/complex_feature.cc |
| +++ b/extensions/common/features/complex_feature.cc |
| @@ -102,16 +102,4 @@ bool ComplexFeature::IsInternal() const { |
| return features_[0]->IsInternal(); |
| } |
| -std::string ComplexFeature::GetAvailabilityMessage(AvailabilityResult result, |
|
Devlin
2016/07/08 21:20:21
Strangely, the only time this is actually called i
lazyboy
2016/07/12 00:35:12
Acknowledged.
|
| - Manifest::Type type, |
| - const GURL& url, |
| - Context context) const { |
| - if (result == IS_AVAILABLE) |
| - return std::string(); |
| - |
| - // TODO(justinlin): Form some kind of combined availabilities/messages from |
| - // SimpleFeatures. |
| - return features_[0]->GetAvailabilityMessage(result, type, url, context); |
| -} |
| - |
| } // namespace extensions |