| Index: chrome/common/extensions/unpacker.cc
 | 
| diff --git a/chrome/common/extensions/unpacker.cc b/chrome/common/extensions/unpacker.cc
 | 
| index 08eb09b904a28baab3a40f18f7df6a54bb6d0156..a6221a09b234a2c056f264d70e4cd08af8571559 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;
 | 
| +  std::vector<InstallWarning> warnings;
 | 
|    if (!extension_file_util::ValidateExtension(extension.get(),
 | 
|                                                &error, &warnings)) {
 | 
|      SetError(error);
 | 
| 
 |