| Index: extensions/common/manifest_handlers/requirements_info.cc
|
| diff --git a/extensions/common/manifest_handlers/requirements_info.cc b/extensions/common/manifest_handlers/requirements_info.cc
|
| index bc26170d91a05f329d092d8e54a6cf082da28483..25ba7a4bd63881b358d75090ecbd4f4e9b29f3c0 100644
|
| --- a/extensions/common/manifest_handlers/requirements_info.cc
|
| +++ b/extensions/common/manifest_handlers/requirements_info.cc
|
| @@ -18,7 +18,6 @@ namespace errors = manifest_errors;
|
|
|
| RequirementsInfo::RequirementsInfo(const Manifest* manifest)
|
| : webgl(false),
|
| - css3d(false),
|
| npapi(false),
|
| window_shape(false) {
|
| // Before parsing requirements from the manifest, automatically default the
|
| @@ -120,8 +119,6 @@ bool RequirementsHandler::Parse(Extension* extension, base::string16* error) {
|
| if ((*feature_iter)->GetAsString(&feature)) {
|
| if (feature == "webgl") {
|
| requirements->webgl = true;
|
| - } else if (feature == "css3d") {
|
| - requirements->css3d = true;
|
| } else {
|
| *error = ErrorUtils::FormatErrorMessageUTF16(
|
| errors::kInvalidRequirement, iter.key());
|
|
|