| Index: chrome/browser/extensions/api/automation_internal/automation_internal_api.h
|
| diff --git a/chrome/browser/extensions/api/automation_internal/automation_internal_api.h b/chrome/browser/extensions/api/automation_internal/automation_internal_api.h
|
| index 4c23448b655aa52ece3cdd6193c7e9cba41d09f2..141ea18d953ba10808b10541b635b5327d956f83 100644
|
| --- a/chrome/browser/extensions/api/automation_internal/automation_internal_api.h
|
| +++ b/chrome/browser/extensions/api/automation_internal/automation_internal_api.h
|
| @@ -31,6 +31,16 @@ class AutomationInternalEnableCurrentTabFunction
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| +class AutomationInternalPerformActionFunction
|
| + : public ChromeAsyncExtensionFunction {
|
| + DECLARE_EXTENSION_FUNCTION("automationInternal.performAction",
|
| + AUTOMATIONINTERNAL_PERFORMACTION)
|
| + protected:
|
| + virtual ~AutomationInternalPerformActionFunction() {}
|
| +
|
| + virtual bool RunImpl() OVERRIDE;
|
| +};
|
| +
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_API_AUTOMATION_INTERNAL_AUTOMATION_INTERNAL_API_H_
|
|
|