| Index: extensions/browser/sandboxed_unpacker.h
|
| diff --git a/extensions/browser/sandboxed_unpacker.h b/extensions/browser/sandboxed_unpacker.h
|
| index 9007a47cbc3ff41996e81aaba7b17748e4d0b150..5b081df194529f223418b11ef554625d78d37477 100644
|
| --- a/extensions/browser/sandboxed_unpacker.h
|
| +++ b/extensions/browser/sandboxed_unpacker.h
|
| @@ -51,11 +51,12 @@ class SandboxedUnpackerClient
|
| // for deleting this memory.
|
| //
|
| // install_icon - The icon we will display in the installation UI, if any.
|
| - virtual void OnUnpackSuccess(const base::FilePath& temp_dir,
|
| - const base::FilePath& extension_root,
|
| - const base::DictionaryValue* original_manifest,
|
| - const Extension* extension,
|
| - const SkBitmap& install_icon) = 0;
|
| + virtual void OnUnpackSuccess(
|
| + const base::FilePath& temp_dir,
|
| + const base::FilePath& extension_root,
|
| + std::unique_ptr<base::DictionaryValue> original_manifest,
|
| + const Extension* extension,
|
| + const SkBitmap& install_icon) = 0;
|
| virtual void OnUnpackFailure(const CrxInstallError& error) = 0;
|
|
|
| protected:
|
|
|