| Index: chrome/browser/extensions/extension_module.cc
|
| diff --git a/chrome/browser/extensions/extension_module.cc b/chrome/browser/extensions/extension_module.cc
|
| index f09de0ba04f6a208d5f0914d20f2de9137cb2efc..cd35b4298939bbf566ea1b56a672afb636d5eb6e 100644
|
| --- a/chrome/browser/extensions/extension_module.cc
|
| +++ b/chrome/browser/extensions/extension_module.cc
|
| @@ -24,7 +24,7 @@ bool SetUpdateUrlDataFunction::RunImpl() {
|
|
|
| bool IsAllowedIncognitoAccessFunction::RunImpl() {
|
| ExtensionService* ext_service = profile()->GetExtensionService();
|
| - const Extension* extension = GetExtension();
|
| + const extensions::Extension* extension = GetExtension();
|
|
|
| result_.reset(Value::CreateBooleanValue(
|
| ext_service->IsIncognitoEnabled(extension->id())));
|
| @@ -33,7 +33,7 @@ bool IsAllowedIncognitoAccessFunction::RunImpl() {
|
|
|
| bool IsAllowedFileSchemeAccessFunction::RunImpl() {
|
| ExtensionService* ext_service = profile()->GetExtensionService();
|
| - const Extension* extension = GetExtension();
|
| + const extensions::Extension* extension = GetExtension();
|
|
|
| result_.reset(Value::CreateBooleanValue(
|
| ext_service->AllowFileAccess(extension)));
|
|
|