diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 00:47:53 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-28 00:47:53 +0000 |
commit | af1277b79f621b307fbcff76768cd7a225841e9e (patch) | |
tree | 8cbe5589ac40b88021b81acc79fd8ba87285c236 /chrome/common/extensions/extension.h | |
parent | 42ac182f04f9c950e867491d0b233dbeecfe56f0 (diff) | |
download | chromium_src-af1277b79f621b307fbcff76768cd7a225841e9e.zip chromium_src-af1277b79f621b307fbcff76768cd7a225841e9e.tar.gz chromium_src-af1277b79f621b307fbcff76768cd7a225841e9e.tar.bz2 |
Pull a SandboxedExtensionUnpacker out of ExtensionsService.
Review URL: http://codereview.chromium.org/160145
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21770 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension.h')
-rw-r--r-- | chrome/common/extensions/extension.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index debdab9..7b2e12e 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -145,6 +145,7 @@ class Extension { std::string* error); const FilePath& path() const { return path_; } + void set_path(const FilePath& path) { path_ = path; } const GURL& url() const { return extension_url_; } const Location location() const { return location_; } void set_location(Location location) { location_ = location; } |