Index: content/browser/tab_contents/tab_contents_delegate.cc |
diff --git a/content/browser/tab_contents/tab_contents_delegate.cc b/content/browser/tab_contents/tab_contents_delegate.cc |
index 7cbc3dc99547df89acfb47a5235611912b375eee..8f95f1eef5e870ec63749a5f432cad29dc84888b 100644 |
--- a/content/browser/tab_contents/tab_contents_delegate.cc |
+++ b/content/browser/tab_contents/tab_contents_delegate.cc |
@@ -9,6 +9,7 @@ |
#include "base/memory/singleton.h" |
#include "content/browser/javascript_dialogs.h" |
#include "content/browser/tab_contents/tab_contents.h" |
+#include "content/public/browser/intents_host.h" |
#include "content/public/common/url_constants.h" |
#include "ui/gfx/rect.h" |
#include "webkit/glue/web_intent_data.h" |
@@ -313,9 +314,8 @@ void TabContentsDelegate::RegisterIntentHandler(TabContents* tab, |
void TabContentsDelegate::WebIntentDispatch( |
TabContents* tab, |
- int routing_id, |
- const webkit_glue::WebIntentData& intent, |
- int intent_id) { |
+ content::IntentsHost* intents_host) { |
+ delete intents_host; |
James Hawkins
2011/11/29 02:57:55
This is a very strange method indeed. Can you add
Greg Billock
2011/11/29 19:18:16
Done.
|
} |
void TabContentsDelegate::FindReply(TabContents* tab, |