From 785993e730139a6c5a93b69ca4dfdc313db59895 Mon Sep 17 00:00:00 2001 From: "ananta@chromium.org" Date: Thu, 28 Oct 2010 18:56:35 +0000 Subject: Reverting this to see if this fixes ChromeFrame tests. Please reland with the tests fixed. Revert 64252 - The ChromeFrame objects now provides an unfrozen interface called IChromeFramePrivate. This interface provides a GetSessionId() which returns the ID used by Chrome in its Tab javascript object. Review URL: http://codereview.chromium.org/3541017 TBR=hansl@google.com Review URL: http://codereview.chromium.org/4134008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64287 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/cfproxy_support.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome_frame/cfproxy_support.cc') diff --git a/chrome_frame/cfproxy_support.cc b/chrome_frame/cfproxy_support.cc index 004a2ea..42e6a28 100644 --- a/chrome_frame/cfproxy_support.cc +++ b/chrome_frame/cfproxy_support.cc @@ -20,7 +20,7 @@ void DispatchReplyFail(uint32 type, SyncMessageContext* ctx) { switch (type) { case AutomationMsg_CreateExternalTab::ID: - delegate->Completed_CreateTab(false, NULL, NULL, 0, 0); + delegate->Completed_CreateTab(false, NULL, NULL, NULL); break; case AutomationMsg_ConnectExternalTab::ID: delegate->Completed_ConnectToTab(false, NULL, NULL, NULL); @@ -38,12 +38,12 @@ bool DispatchReplyOk(const IPC::Message* reply_msg, uint32 type, void* iter = IPC::SyncMessage::GetDataIterator(reply_msg); switch (type) { case AutomationMsg_CreateExternalTab::ID: { - // Tuple4 out; + // Tuple3 out; TupleTypes::ValueTuple out; if (ReadParam(reply_msg, &iter, &out)) { DCHECK(tab2delegate->find(out.c) == tab2delegate->end()); (*tab2delegate)[out.c] = delegate; - delegate->Completed_CreateTab(true, out.a, out.b, out.c, out.d); + delegate->Completed_CreateTab(true, out.a, out.b, out.c); } return true; } -- cgit v1.1