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