| Index: chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.cc
|
| diff --git a/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.cc b/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.cc
|
| index ea9f43189d58eeebf18b6cf6a7521d2e57be755d..8a61cde885300684f9cbe29f7a610e77116d01ca 100644
|
| --- a/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.cc
|
| +++ b/chrome/browser/extensions/api/runtime/chrome_runtime_api_delegate.cc
|
| @@ -251,10 +251,9 @@
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| DCHECK(type == extensions::NOTIFICATION_EXTENSION_UPDATE_FOUND);
|
| - typedef const std::pair<std::string, base::Version> UpdateDetails;
|
| + typedef const std::pair<std::string, Version> UpdateDetails;
|
| const std::string& id = content::Details<UpdateDetails>(details)->first;
|
| - const base::Version& version =
|
| - content::Details<UpdateDetails>(details)->second;
|
| + const Version& version = content::Details<UpdateDetails>(details)->second;
|
| if (version.IsValid()) {
|
| CallUpdateCallbacks(
|
| id, UpdateCheckResult(true, kUpdateFound, version.GetString()));
|
|
|