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

Unified Diff: chrome_frame/cfproxy_support.cc

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_frame/cfproxy_proxy.cc ('k') | chrome_frame/cfproxy_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/cfproxy_support.cc
diff --git a/chrome_frame/cfproxy_support.cc b/chrome_frame/cfproxy_support.cc
index 9f4edc68d1614916a8064837ebebeb41fd49d2a8..7fd61b7ce82f142e76a85c9778f2ee7d5ad4276e 100644
--- a/chrome_frame/cfproxy_support.cc
+++ b/chrome_frame/cfproxy_support.cc
@@ -26,10 +26,6 @@ void DispatchReplyFail(uint32 type,
case AutomationMsg_ConnectExternalTab::ID:
delegate->Completed_ConnectToTab(false, NULL, NULL, 0, 0);
break;
- case AutomationMsg_InstallExtension::ID:
- delegate->Completed_InstallExtension(false,
- AUTOMATION_MSG_EXTENSION_INSTALL_FAILED, ctx);
- break;
}
}
@@ -59,32 +55,6 @@ bool DispatchReplyOk(const IPC::Message* reply_msg, uint32 type,
}
return true;
}
-
- case AutomationMsg_InstallExtension::ID: {
- // Tuple1<AutomationMsg_ExtensionResponseValues> out;
- TupleTypes<AutomationMsg_InstallExtension::ReplyParam>::ValueTuple out;
- if (ReadParam(reply_msg, &iter, &out))
- delegate->Completed_InstallExtension(true, out.a, ctx);
- return true;
- }
-
- case AutomationMsg_LoadExpandedExtension::ID: {
- // Tuple1<AutomationMsg_ExtensionResponseValues> out;
- TupleTypes<AutomationMsg_LoadExpandedExtension::ReplyParam>::ValueTuple
- out;
- if (ReadParam(reply_msg, &iter, &out))
- delegate->Completed_LoadExpandedExtension(true, out.a, ctx);
- break;
- }
-
- case AutomationMsg_GetEnabledExtensions::ID: {
- // Tuple1<std::vector<FilePath> >
- TupleTypes<AutomationMsg_GetEnabledExtensions::ReplyParam>::ValueTuple
- out;
- if (ReadParam(reply_msg, &iter, &out))
- delegate->Completed_GetEnabledExtensions(true, &out.a);
- break;
- }
} // switch
return false;
@@ -180,12 +150,6 @@ void Interface2IPCMessage::Tab_OnHostMoved(int tab) {
sender_->Send(new AutomationMsg_BrowserMove(tab));
}
-void Interface2IPCMessage::Tab_SetEnableExtensionAutomation(int tab,
- const std::vector<std::string>& functions_enabled) {
- sender_->Send(new AutomationMsg_SetEnableExtensionAutomation(tab,
- functions_enabled));
-}
-
void DelegateHolder::AddDelegate(ChromeProxyDelegate* p) {
delegate_list_.insert(p);
}
« no previous file with comments | « chrome_frame/cfproxy_proxy.cc ('k') | chrome_frame/cfproxy_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698