| Index: chrome/common/extensions/unpacker.cc
|
| diff --git a/chrome/common/extensions/unpacker.cc b/chrome/common/extensions/unpacker.cc
|
| index 08eb09b904a28baab3a40f18f7df6a54bb6d0156..f4715b9fdc25772164d6604928517281a2d9da2c 100644
|
| --- a/chrome/common/extensions/unpacker.cc
|
| +++ b/chrome/common/extensions/unpacker.cc
|
| @@ -19,6 +19,7 @@
|
| #include "chrome/common/extensions/extension_file_util.h"
|
| #include "chrome/common/extensions/extension_l10n_util.h"
|
| #include "chrome/common/extensions/extension_manifest_constants.h"
|
| +#include "chrome/common/extensions/manifest.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/common/zip.h"
|
| #include "content/public/common/common_param_traits.h"
|
| @@ -83,7 +84,7 @@ namespace extensions {
|
|
|
| Unpacker::Unpacker(const FilePath& extension_path,
|
| const std::string& extension_id,
|
| - Extension::Location location,
|
| + Manifest::Location location,
|
| int creation_flags)
|
| : extension_path_(extension_path),
|
| extension_id_(extension_id),
|
| @@ -184,7 +185,7 @@ bool Unpacker::Run() {
|
| return false;
|
| }
|
|
|
| - Extension::InstallWarningVector warnings;
|
| + InstallWarning::Vector warnings;
|
| if (!extension_file_util::ValidateExtension(extension.get(),
|
| &error, &warnings)) {
|
| SetError(error);
|
|
|