| Index: chrome/browser/tab_contents/chrome_interstitial_page.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/chrome_interstitial_page.cc (revision 113593)
|
| +++ chrome/browser/tab_contents/chrome_interstitial_page.cc (working copy)
|
| @@ -8,6 +8,8 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/renderer_preferences_util.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| +#include "chrome/common/render_messages.h"
|
| +#include "content/browser/renderer_host/render_view_host.h"
|
| #include "content/browser/tab_contents/tab_contents.h"
|
| #include "content/public/browser/notification_details.h"
|
| #include "content/public/browser/notification_source.h"
|
| @@ -31,6 +33,8 @@
|
| notification_registrar_.Add(
|
| this, chrome::NOTIFICATION_DOM_OPERATION_RESPONSE,
|
| content::Source<RenderViewHost>(render_view_host()));
|
| + render_view_host()->Send(
|
| + new ChromeViewMsg_SetAsInterstitial(render_view_host()->routing_id()));
|
| }
|
|
|
| void ChromeInterstitialPage::Observe(
|
|
|