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

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

Issue 308003003: Allow requesting Automation tree by tabId (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary content script from tests Created 6 years, 7 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 1c94446e36a5c0f80944bb8ed9babdcc81d43886..5aa4dab26c23dd241d581af3f42563c06db24cde 100644
--- a/chrome/browser/extensions/api/automation_internal/automation_internal_api.h
+++ b/chrome/browser/extensions/api/automation_internal/automation_internal_api.h
@@ -32,12 +32,12 @@ struct AXNodeData;
namespace extensions {
// Implementation of the chrome.automation API.
-class AutomationInternalEnableCurrentTabFunction
+class AutomationInternalEnableTabFunction
: public ChromeUIThreadExtensionFunction {
- DECLARE_EXTENSION_FUNCTION("automationInternal.enableCurrentTab",
- AUTOMATIONINTERNAL_ENABLECURRENTTAB)
+ DECLARE_EXTENSION_FUNCTION("automationInternal.enableTab",
+ AUTOMATIONINTERNAL_ENABLETAB)
protected:
- virtual ~AutomationInternalEnableCurrentTabFunction() {}
+ virtual ~AutomationInternalEnableTabFunction() {}
virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
};

Powered by Google App Engine
This is Rietveld 408576698