| 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..3149f83024e9f2a92c5075990a7b2c8dc75e8f01 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_handler.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::SandboxedInfo::IsSandboxedPage(extension,
|
| + info.url().path());
|
| }
|
| }
|
| return false;
|
|
|