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

Unified Diff: chrome_frame/cfproxy.h

Issue 6756044: Remove extension automation support that was used only by CEEE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head. Created 9 years, 8 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
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | chrome_frame/cfproxy_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/cfproxy.h
diff --git a/chrome_frame/cfproxy.h b/chrome_frame/cfproxy.h
index ca3aa844728f5842bfe1486969082cf89668d499..a567abc4c77532a7db7d9e005b9718141e26d06f 100644
--- a/chrome_frame/cfproxy.h
+++ b/chrome_frame/cfproxy.h
@@ -78,14 +78,6 @@ class ChromeProxy {
public:
// General
virtual void RemoveBrowsingData(int remove_mask) = 0; // async
- virtual void InstallExtension(ChromeProxyDelegate* delegate,
- const FilePath& crx_path,
- SyncMessageContext* ctx) = 0;
- virtual void LoadExtension(ChromeProxyDelegate* delegate,
- const FilePath& path,
- SyncMessageContext* ctx) = 0;
- virtual void GetEnabledExtensions(ChromeProxyDelegate* delegate,
- SyncMessageContext* ctx) = 0;
virtual void SetProxyConfig(const std::string& json_encoded_settings) = 0;
// Tab management.
@@ -124,8 +116,6 @@ class ChromeProxy {
// Misc.
virtual void Tab_OnHostMoved(int tab) = 0;
virtual void Tab_RunUnloadHandlers(int tab) = 0;
- virtual void Tab_SetEnableExtensionAutomation(int tab,
- const std::vector<std::string>& functions_enabled) = 0;
virtual void Tab_Navigate(int tab, const GURL& url, const GURL& referrer) = 0;
virtual void Tab_OverrideEncoding(int tab, const char* encoding) = 0;
@@ -163,12 +153,6 @@ class ChromeProxyDelegate : public IPC::Channel::Listener {
HWND tab_window, int tab_handle, int session_id) = 0;
virtual void Completed_Navigate(bool success,
enum AutomationMsg_NavigationResponseValues res) = 0;
- virtual void Completed_InstallExtension(bool success,
- AutomationMsg_ExtensionResponseValues res, SyncMessageContext* ctx) = 0;
- virtual void Completed_LoadExpandedExtension(bool success,
- AutomationMsg_ExtensionResponseValues res, SyncMessageContext* ctx) = 0;
- virtual void Completed_GetEnabledExtensions(bool success,
- const std::vector<FilePath>* extensions) = 0;
protected:
~ChromeProxyDelegate() {}
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | chrome_frame/cfproxy_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698