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") { |
Marijn Kruisselbrink
2014/04/16 20:39:14
Removing this if entirely makes this a backwards i
danakj
2014/04/16 20:46:57
oh ok that was what I was attempting to do yes. i
danakj
2014/04/16 20:54:11
I'm trying to understand what the right thing to d
|
- requirements->css3d = true; |
} else { |
*error = ErrorUtils::FormatErrorMessageUTF16( |
errors::kInvalidRequirement, iter.key()); |