Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1337)

Unified Diff: chrome/browser/extensions/api/automation_internal/automation_internal_api.h

Issue 203753002: Implement actions for Automation API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Lots of style cleanup. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698