| Index: chrome/common/extensions/extension.cc
|
| diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc
|
| index be43f6cce133726f6d76c65baf12f8773420f9b2..f832b4cccad7743e9609b0a7d1c6927f711de7a6 100644
|
| --- a/chrome/common/extensions/extension.cc
|
| +++ b/chrome/common/extensions/extension.cc
|
| @@ -2962,11 +2962,12 @@ bool Extension::CheckPlatformAppFeatures(std::string* utf8_error) const {
|
| }
|
|
|
| bool Extension::CheckConflictingFeatures(std::string* utf8_error) const {
|
| - if (has_lazy_background_page() &&
|
| - HasAPIPermission(APIPermission::kWebRequest)) {
|
| - *utf8_error = errors::kWebRequestConflictsWithLazyBackground;
|
| - return false;
|
| - }
|
| + // TODO(fsamuel): What to do here?
|
| + //if (has_lazy_background_page() &&
|
| + // HasAPIPermission(APIPermission::kWebRequest)) {
|
| + // *utf8_error = errors::kWebRequestConflictsWithLazyBackground;
|
| + // return false;
|
| + //}
|
|
|
| return true;
|
| }
|
|
|