| Index: extensions/browser/api/runtime/runtime_api.cc
|
| diff --git a/extensions/browser/api/runtime/runtime_api.cc b/extensions/browser/api/runtime/runtime_api.cc
|
| index 544bf58c82e598463ed6ec4a80f5b8f749ee8f93..443f93682b6d46cb3e054fa930516c7ebe2e2eac 100644
|
| --- a/extensions/browser/api/runtime/runtime_api.cc
|
| +++ b/extensions/browser/api/runtime/runtime_api.cc
|
| @@ -191,7 +191,7 @@
|
| base::Bind(&RuntimeEventRouter::DispatchOnInstalledEvent,
|
| browser_context_,
|
| extension->id(),
|
| - base::Version(),
|
| + Version(),
|
| true));
|
| }
|
|
|
| @@ -206,7 +206,7 @@
|
| if (util::IsEphemeralApp(extension->id(), browser_context_))
|
| return;
|
|
|
| - base::Version old_version = delegate_->GetPreviousExtensionVersion(extension);
|
| + Version old_version = delegate_->GetPreviousExtensionVersion(extension);
|
|
|
| // Dispatch the onInstalled event.
|
| base::MessageLoop::current()->PostTask(
|
| @@ -287,7 +287,7 @@
|
| void RuntimeEventRouter::DispatchOnInstalledEvent(
|
| content::BrowserContext* context,
|
| const std::string& extension_id,
|
| - const base::Version& old_version,
|
| + const Version& old_version,
|
| bool chrome_updated) {
|
| if (!ExtensionsBrowserClient::Get()->IsValidContext(context))
|
| return;
|
|
|