| Index: chrome/common/extensions/extension.cc
|
| diff --git a/chrome/common/extensions/extension.cc b/chrome/common/extensions/extension.cc
|
| index 5d5045c95f7d2e78ad5ae829e5e89784aeb6b03c..a4824ee736b5a255bf85d4f884cdd4fd6961ff9e 100644
|
| --- a/chrome/common/extensions/extension.cc
|
| +++ b/chrome/common/extensions/extension.cc
|
| @@ -1881,8 +1881,7 @@ bool Extension::LoadBackgroundPersistent(
|
| !manifest_->Get(keys::kBackgroundPersistent, &background_persistent))
|
| return true;
|
|
|
| - if (!background_persistent->IsType(Value::TYPE_BOOLEAN) ||
|
| - !background_persistent->GetAsBoolean(&background_page_is_persistent_)) {
|
| + if (!background_persistent->GetAsBoolean(&background_page_is_persistent_)) {
|
| *error = ASCIIToUTF16(errors::kInvalidBackgroundPersistent);
|
| return false;
|
| }
|
|
|