| Index: chrome/browser/extensions/pending_extension_info.h
|
| diff --git a/chrome/browser/extensions/pending_extension_info.h b/chrome/browser/extensions/pending_extension_info.h
|
| index 98bb35af5d3a8df99fac20eda8928b95d6d55534..8ac52c55642c6217222db8472e20a959bcdf38a1 100644
|
| --- a/chrome/browser/extensions/pending_extension_info.h
|
| +++ b/chrome/browser/extensions/pending_extension_info.h
|
| @@ -30,7 +30,7 @@
|
| PendingExtensionInfo(const std::string& id,
|
| const std::string& install_parameter,
|
| const GURL& update_url,
|
| - const base::Version& version,
|
| + const Version& version,
|
| ShouldAllowInstallPredicate should_allow_install,
|
| bool is_from_sync,
|
| Manifest::Location install_source,
|
| @@ -48,7 +48,7 @@
|
|
|
| const std::string& id() const { return id_; }
|
| const GURL& update_url() const { return update_url_; }
|
| - const base::Version& version() const { return version_; }
|
| + const Version& version() const { return version_; }
|
| const std::string& install_parameter() const { return install_parameter_; }
|
|
|
| // ShouldAllowInstall() returns the result of running constructor argument
|
| @@ -77,7 +77,7 @@
|
| std::string id_;
|
|
|
| GURL update_url_;
|
| - base::Version version_;
|
| + Version version_;
|
| std::string install_parameter_;
|
|
|
| // When the extension is about to be installed, this function is
|
|
|