diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:03:41 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 17:03:41 +0000 |
commit | 00f6b77b89dcd900c873ed9da13dbaa2e90fe022 (patch) | |
tree | f8cc2494b35a8cacef56b51c973a1d89548212cd /chrome_frame/chrome_frame_automation.h | |
parent | 61452e358d496c5e0ac66c7e5f1639dff3c496ac (diff) | |
download | chromium_src-00f6b77b89dcd900c873ed9da13dbaa2e90fe022.zip chromium_src-00f6b77b89dcd900c873ed9da13dbaa2e90fe022.tar.gz chromium_src-00f6b77b89dcd900c873ed9da13dbaa2e90fe022.tar.bz2 |
Add bindings to chrome frame to call the new extension automation apis.
TEST=see unit tests
BUG=0
Review URL: http://codereview.chromium.org/284017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29902 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_automation.h')
-rw-r--r-- | chrome_frame/chrome_frame_automation.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome_frame/chrome_frame_automation.h b/chrome_frame/chrome_frame_automation.h index a1d6d55..e1a34d7 100644 --- a/chrome_frame/chrome_frame_automation.h +++ b/chrome_frame/chrome_frame_automation.h @@ -209,6 +209,15 @@ class ChromeFrameAutomationClient FindInPageCase match_case, bool find_next); + virtual void InstallExtension(const FilePath& crx_path, void* user_data); + + virtual void LoadExpandedExtension(const FilePath& path, void* user_data); + + virtual void InstallExtensionComplete( + const FilePath& path, + void* user_data, + AutomationMsg_ExtensionResponseValues res); + TabProxy* tab() const { return tab_.get(); } BEGIN_MSG_MAP(ChromeFrameAutomationClient) |