| Index: chrome/common/extensions/extension_set.h
|
| diff --git a/chrome/common/extensions/extension_set.h b/chrome/common/extensions/extension_set.h
|
| index 428df7f2fa59ee0174231614b0c01a47470d578b..a516ca45e173497af3bcd4b0101a09dd1ba8171d 100644
|
| --- a/chrome/common/extensions/extension_set.h
|
| +++ b/chrome/common/extensions/extension_set.h
|
| @@ -41,7 +41,7 @@ class ExtensionURLInfo {
|
| // The one true extension container. Extensions are identified by their id.
|
| // Only one extension can be in the set with a given ID.
|
| class ExtensionSet {
|
| -public:
|
| + public:
|
| typedef std::pair<FilePath, std::string> ExtensionPathAndDefaultLocale;
|
| typedef std::map<std::string, scoped_refptr<const extensions::Extension> >
|
| ExtensionMap;
|
| @@ -129,6 +129,10 @@ public:
|
| // permissions the given extension has been granted.
|
| bool ExtensionBindingsAllowed(const ExtensionURLInfo& info) const;
|
|
|
| + // Returns true if |info| is an extension page that is to be served in a
|
| + // unique sandboxed origin.
|
| + bool IsSandboxedPage(const ExtensionURLInfo& info) const;
|
| +
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(ExtensionSetTest, ExtensionSet);
|
|
|
|
|