| 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);
|
| }
|
|
|