| Index: chrome/browser/extensions/api/automation_internal/automation_internal_api.cc
|
| diff --git a/chrome/browser/extensions/api/automation_internal/automation_internal_api.cc b/chrome/browser/extensions/api/automation_internal/automation_internal_api.cc
|
| index 9c77eda2fc5e75c92c24784360d5c792bb156feb..88600550e2d72a13775321884fac5e24abfb61b0 100644
|
| --- a/chrome/browser/extensions/api/automation_internal/automation_internal_api.cc
|
| +++ b/chrome/browser/extensions/api/automation_internal/automation_internal_api.cc
|
| @@ -59,7 +59,7 @@ class AutomationWebContentsObserver
|
| // if this doesn't turn accessibility on for the first time (e.g. if a
|
| // RendererAccessibility object existed already because a screenreader has been
|
| // run at some point).
|
| -bool AutomationInternalEnableCurrentTabFunction::RunImpl() {
|
| +bool AutomationInternalEnableCurrentTabFunction::RunAsync() {
|
| if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableAutomationAPI)) {
|
| return false;
|
| @@ -88,7 +88,7 @@ bool AutomationInternalEnableCurrentTabFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool AutomationInternalPerformActionFunction::RunImpl() {
|
| +bool AutomationInternalPerformActionFunction::RunAsync() {
|
| using api::automation_internal::PerformAction::Params;
|
| scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params.get());
|
|
|