| Index: chrome/browser/accessibility/accessibility_extension_api.cc
|
| ===================================================================
|
| --- chrome/browser/accessibility/accessibility_extension_api.cc (revision 179687)
|
| +++ chrome/browser/accessibility/accessibility_extension_api.cc (working copy)
|
| @@ -171,7 +171,7 @@
|
| }
|
| }
|
|
|
| -bool SetAccessibilityEnabledFunction::RunImpl() {
|
| +bool AccessibilitySetAccessibilityEnabledFunction::RunImpl() {
|
| bool enabled;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetBoolean(0, &enabled));
|
| ExtensionAccessibilityEventRouter::GetInstance()
|
| @@ -179,7 +179,7 @@
|
| return true;
|
| }
|
|
|
| -bool GetFocusedControlFunction::RunImpl() {
|
| +bool AccessibilityGetFocusedControlFunction::RunImpl() {
|
| // Get the serialized dict from the last focused control and return it.
|
| // However, if the dict is empty, that means we haven't seen any focus
|
| // events yet, so return null instead.
|
| @@ -195,7 +195,7 @@
|
| return true;
|
| }
|
|
|
| -bool GetAlertsForTabFunction::RunImpl() {
|
| +bool AccessibilityGetAlertsForTabFunction::RunImpl() {
|
| int tab_id;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetInteger(0, &tab_id));
|
|
|
|
|