// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/tab_contents/chrome_interstitial_page.h" #include "chrome/browser/dom_operation_notification_details.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/renderer_preferences_util.h" #include "chrome/common/chrome_notification_types.h" #include "content/browser/tab_contents/tab_contents.h" #include "content/common/notification_service.h" #include "content/common/notification_source.h" ChromeInterstitialPage::ChromeInterstitialPage(TabContents* tab, bool new_navigation, const GURL& url) : InterstitialPage(tab, new_navigation, url) { Profile* profile = Profile::FromBrowserContext(tab->browser_context()); RendererPreferences prefs; renderer_preferences_util::UpdateFromSystemSettings(&prefs, profile); set_renderer_preferences(prefs); } ChromeInterstitialPage::~ChromeInterstitialPage() { } void ChromeInterstitialPage::Show() { InterstitialPage::Show(); notification_registrar_.Add( this, chrome::NOTIFICATION_DOM_OPERATION_RESPONSE, Source(render_view_host())); } void ChromeInterstitialPage::Observe(int type, const NotificationSource& source, const NotificationDetails& details) { if (chrome::NOTIFICATION_DOM_OPERATION_RESPONSE == type) { if (enabled()) { Details dom_op_details(details); CommandReceived(dom_op_details->json()); } return; } InterstitialPage::Observe(type, source, details); }