| Index: extensions/common/features/manifest_feature.cc
|
| diff --git a/extensions/common/features/manifest_feature.cc b/extensions/common/features/manifest_feature.cc
|
| index 2245dee24e23490587e1767489b3a70e08f72a0b..313142d6843e106c64fe5c35e4ff53af10b49ecb 100644
|
| --- a/extensions/common/features/manifest_feature.cc
|
| +++ b/extensions/common/features/manifest_feature.cc
|
| @@ -38,13 +38,13 @@ bool ManifestFeature::Validate(std::string* error) {
|
| if (!SimpleFeature::Validate(error))
|
| return false;
|
|
|
| - if (extension_types()->empty()) {
|
| + if (extension_types().empty()) {
|
| *error = name() + ": Manifest features must specify at least one " +
|
| "value for extension_types.";
|
| return false;
|
| }
|
|
|
| - if (!contexts()->empty()) {
|
| + if (!contexts().empty()) {
|
| *error = name() + ": Manifest features do not support contexts.";
|
| return false;
|
| }
|
|
|