| Index: chrome/browser/ui/views/external_tab_container_win.cc
|
| diff --git a/chrome/browser/ui/views/external_tab_container_win.cc b/chrome/browser/ui/views/external_tab_container_win.cc
|
| index e03516fbb715ab1b906f6436a7e6ca22966a615f..8b79398b105fa1ea297a0bb5265cf9f8720d159f 100644
|
| --- a/chrome/browser/ui/views/external_tab_container_win.cc
|
| +++ b/chrome/browser/ui/views/external_tab_container_win.cc
|
| @@ -217,7 +217,8 @@ bool ExternalTabContainerWin::Init(Profile* profile,
|
| content::Source<NavigationController>(controller));
|
| registrar_.Add(this, content::NOTIFICATION_LOAD_STOP,
|
| content::Source<NavigationController>(controller));
|
| - registrar_.Add(this, content::NOTIFICATION_RENDER_VIEW_HOST_CREATED_FOR_TAB,
|
| + registrar_.Add(this,
|
| + content::NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED,
|
| content::Source<WebContents>(tab_contents_->web_contents()));
|
| registrar_.Add(this, content::NOTIFICATION_RENDER_VIEW_HOST_DELETED,
|
| content::NotificationService::AllSources());
|
| @@ -906,7 +907,7 @@ void ExternalTabContainerWin::Observe(
|
| }
|
| break;
|
| }
|
| - case content::NOTIFICATION_RENDER_VIEW_HOST_CREATED_FOR_TAB: {
|
| + case content::NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED: {
|
| if (load_requests_via_automation_) {
|
| RenderViewHost* rvh = content::Details<RenderViewHost>(details).ptr();
|
| RegisterRenderViewHostForAutomation(rvh, false);
|
|
|