| Index: chrome/browser/external_tab_container_win.cc
|
| diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab_container_win.cc
|
| index bfdeecae27d69cf1633da14e2ade009e918fd52a..31d61f48eed50c1671a43bca7069d697a0feb491 100644
|
| --- a/chrome/browser/external_tab_container_win.cc
|
| +++ b/chrome/browser/external_tab_container_win.cc
|
| @@ -45,7 +45,7 @@
|
| #include "content/browser/tab_contents/navigation_details.h"
|
| #include "content/browser/tab_contents/provisional_load_details.h"
|
| #include "content/browser/tab_contents/tab_contents.h"
|
| -#include "content/public/browser/intents_host.h"
|
| +#include "content/public/browser/web_intents_dispatcher.h"
|
| #include "content/public/browser/native_web_keyboard_event.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/common/bindings_policy.h"
|
| @@ -737,10 +737,10 @@ void ExternalTabContainer::RegisterIntentHandler(TabContents* tab,
|
|
|
| void ExternalTabContainer::WebIntentDispatch(
|
| TabContents* tab,
|
| - content::IntentsHost* intents_host) {
|
| + content::WebIntentsDispatcher* intents_dispatcher) {
|
| // TODO(binji) How do we want to display the WebIntentPicker bubble if there
|
| // is no BrowserWindow?
|
| - delete intents_host;
|
| + delete intents_dispatcher;
|
| }
|
|
|
| void ExternalTabContainer::FindReply(TabContents* tab,
|
|
|