From a1e62d1553f81d66fa5fdc6a4e54a5531d378bbc Mon Sep 17 00:00:00 2001 From: "joi@chromium.org" Date: Tue, 16 Mar 2010 02:18:43 +0000 Subject: Adds an automation message to retrieve the list of enabled extensions, and CF bindings for it. TEST=unit test to follow BUG=none Review URL: http://codereview.chromium.org/901002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41667 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/chrome_frame_automation.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'chrome_frame/chrome_frame_automation.h') diff --git a/chrome_frame/chrome_frame_automation.h b/chrome_frame/chrome_frame_automation.h index 48c76fd..f01d1b4 100644 --- a/chrome_frame/chrome_frame_automation.h +++ b/chrome_frame/chrome_frame_automation.h @@ -186,11 +186,19 @@ class ChromeFrameAutomationClient virtual void LoadExpandedExtension(const FilePath& path, void* user_data); + // Starts a request to get the list of enabled extensions' base directories. + // Response comes back as ChromeFrameDelegate::OnEnabledExtensions(). + virtual void GetEnabledExtensions(void* user_data); + virtual void InstallExtensionComplete( const FilePath& path, void* user_data, AutomationMsg_ExtensionResponseValues res); + virtual void GetEnabledExtensionsComplete( + void* user_data, + std::vector* extension_directories); + virtual void OnChromeFrameHostMoved(); TabProxy* tab() const { return tab_.get(); } -- cgit v1.1