| Index: chrome/browser/extensions/api/runtime/runtime_api.cc
|
| diff --git a/chrome/browser/extensions/api/runtime/runtime_api.cc b/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| index 59ff72e0808f7698d84f63e0121ca8d253629b29..fbb35ed0d676627af9358e0aed455a08ffa6bc79 100644
|
| --- a/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| +++ b/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| @@ -470,7 +470,7 @@ void RuntimeEventRouter::OnExtensionUninstalled(
|
| #endif // defined(ENABLE_EXTENSIONS)
|
| }
|
|
|
| -bool RuntimeGetBackgroundPageFunction::RunImpl() {
|
| +bool RuntimeGetBackgroundPageFunction::RunAsync() {
|
| ExtensionSystem* system = ExtensionSystem::Get(GetProfile());
|
| ExtensionHost* host = system->process_manager()->
|
| GetBackgroundHostForExtension(extension_id());
|
| @@ -525,7 +525,7 @@ RuntimeRequestUpdateCheckFunction::RuntimeRequestUpdateCheckFunction() {
|
| content::NotificationService::AllSources());
|
| }
|
|
|
| -bool RuntimeRequestUpdateCheckFunction::RunImpl() {
|
| +bool RuntimeRequestUpdateCheckFunction::RunAsync() {
|
| ExtensionSystem* system = ExtensionSystem::Get(GetProfile());
|
| ExtensionService* service = system->extension_service();
|
| ExtensionUpdater* updater = service->updater();
|
|
|