| Index: chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
|
| diff --git a/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc b/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
|
| index 0bcc65e60d1723c70cd537c07bd9ddc994d55d2b..bedbf960c7e786bcf1a87ef262dbdbac891ea813 100644
|
| --- a/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
|
| +++ b/chrome/common/extensions/manifest_handlers/minimum_chrome_version_checker.cc
|
| @@ -33,13 +33,13 @@
|
| return false;
|
| }
|
|
|
| - base::Version minimum_version(minimum_version_string);
|
| + Version minimum_version(minimum_version_string);
|
| if (!minimum_version.IsValid()) {
|
| *error = base::ASCIIToUTF16(errors::kInvalidMinimumChromeVersion);
|
| return false;
|
| }
|
|
|
| - base::Version current_version(version_info::GetVersionNumber());
|
| + Version current_version(version_info::GetVersionNumber());
|
| if (!current_version.IsValid()) {
|
| NOTREACHED();
|
| return false;
|
|
|