Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1035)

Unified Diff: extensions/common/manifest_handlers/requirements_info.cc

Issue 239083006: Change ACCELERATED_COMPOSITING blacklist to GPU_COMPOSITING. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: typo Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698