| Index: chrome/common/extensions/extension_set.cc
|
| diff --git a/chrome/common/extensions/extension_set.cc b/chrome/common/extensions/extension_set.cc
|
| index 558e55d38fed914568a10eaa6a0c97189cad2bec..d8af7e6b2bfab454a450b24d12b86fb2d9846614 100644
|
| --- a/chrome/common/extensions/extension_set.cc
|
| +++ b/chrome/common/extensions/extension_set.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "chrome/common/extensions/extension.h"
|
| +#include "chrome/common/extensions/sandboxed_page_info.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "extensions/common/constants.h"
|
|
|
| @@ -168,7 +169,8 @@ bool ExtensionSet::IsSandboxedPage(const ExtensionURLInfo& info) const {
|
| if (info.url().SchemeIs(extensions::kExtensionScheme)) {
|
| const Extension* extension = GetByID(info.url().host());
|
| if (extension) {
|
| - return extension->IsSandboxedPage(info.url().path());
|
| + return extensions::SandboxedPageInfo::IsSandboxedPage(extension,
|
| + info.url().path());
|
| }
|
| }
|
| return false;
|
|
|