| Index: chrome/browser/extensions/sandboxed_extension_unpacker.h
|
| diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker.h b/chrome/browser/extensions/sandboxed_extension_unpacker.h
|
| index a3b190c4142626b0f68ab90db256bdc0d59eac4e..42a33406121108fc695b847ed01672eba01e5a3c 100644
|
| --- a/chrome/browser/extensions/sandboxed_extension_unpacker.h
|
| +++ b/chrome/browser/extensions/sandboxed_extension_unpacker.h
|
| @@ -93,6 +93,7 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client {
|
| // |client| with the result. If |rdh| is provided, unpacking is done in a
|
| // sandboxed subprocess. Otherwise, it is done in-process.
|
| SandboxedExtensionUnpacker(const FilePath& crx_path,
|
| + const FilePath& temp_path,
|
| ResourceDispatcherHost* rdh,
|
| SandboxedExtensionUnpackerClient* cilent);
|
|
|
| @@ -145,6 +146,9 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client {
|
| // The path to the CRX to unpack.
|
| FilePath crx_path_;
|
|
|
| + // A path to a temp dir to unpack in.
|
| + FilePath temp_path_;
|
| +
|
| // Our client's thread. This is the thread we respond on.
|
| ChromeThread::ID thread_identifier_;
|
|
|
|
|