summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/sandboxed_extension_unpacker.h
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-25 10:01:05 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-25 10:01:05 +0000
commit9f72aa09129fbd19a5ae253371019752a0624997 (patch)
tree6c54d2280ebdf31fe31f46fd3d882977324e4f3d /chrome/browser/extensions/sandboxed_extension_unpacker.h
parent0a73a37731cf87370cb7c4f8dcb4801277c1d858 (diff)
downloadchromium_src-9f72aa09129fbd19a5ae253371019752a0624997.zip
chromium_src-9f72aa09129fbd19a5ae253371019752a0624997.tar.gz
chromium_src-9f72aa09129fbd19a5ae253371019752a0624997.tar.bz2
Reland r50834
TBR=tony@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/sandboxed_extension_unpacker.h')
-rw-r--r--chrome/browser/extensions/sandboxed_extension_unpacker.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker.h b/chrome/browser/extensions/sandboxed_extension_unpacker.h
index 4c89082..60d02a9 100644
--- a/chrome/browser/extensions/sandboxed_extension_unpacker.h
+++ b/chrome/browser/extensions/sandboxed_extension_unpacker.h
@@ -97,12 +97,6 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client {
ResourceDispatcherHost* rdh,
SandboxedExtensionUnpackerClient* cilent);
- const GURL& web_origin() const { return web_origin_override_; }
- void set_web_origin(const GURL& val) {
- web_origin_override_ = val;
- force_web_origin_override_ = true;
- }
-
// Start unpacking the extension. The client is called with the results.
void Start();
@@ -173,15 +167,6 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client {
// The public key that was extracted from the CRX header.
std::string public_key_;
-
- // If the app uses web content, its origin will be set to this value. This is
- // used when an app is self-hosted. The only valid origin is the origin it is
- // served from.
- GURL web_origin_override_;
-
- // If true, we require the web_origin field to be empty in the manifest.
- // Instead, we use the one given in web_origin_override_. Defaults to false.
- bool force_web_origin_override_;
};
#endif // CHROME_BROWSER_EXTENSIONS_SANDBOXED_EXTENSION_UNPACKER_H_