diff options
author | markusheintz@chromium.org <markusheintz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-03 11:49:24 +0000 |
---|---|---|
committer | markusheintz@chromium.org <markusheintz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-03 11:49:24 +0000 |
commit | ef1cef9aef6034dda84cee719d2c9012bfb75a5e (patch) | |
tree | 4082f8cb967d10d7b4651c5edb8d6c7cb3b93e9f /chrome/browser/chromeos/offline/offline_load_page.cc | |
parent | 2178814c0d188e0f67cbe4de708b5e8ac7283175 (diff) | |
download | chromium_src-ef1cef9aef6034dda84cee719d2c9012bfb75a5e.zip chromium_src-ef1cef9aef6034dda84cee719d2c9012bfb75a5e.tar.gz chromium_src-ef1cef9aef6034dda84cee719d2c9012bfb75a5e.tar.bz2 |
Adopt InterstitialPage to RenderViewHost message changes which were introduced by http://codereview.chromium.org/6883177.
This makes the buttons on interstitial pages work again.
Committed by sfeuz
Review URL: http://codereview.chromium.org/6904159
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/offline/offline_load_page.cc')
-rw-r--r-- | chrome/browser/chromeos/offline/offline_load_page.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/offline/offline_load_page.cc b/chrome/browser/chromeos/offline/offline_load_page.cc index e89f650..1130230 100644 --- a/chrome/browser/chromeos/offline/offline_load_page.cc +++ b/chrome/browser/chromeos/offline/offline_load_page.cc @@ -66,7 +66,7 @@ void OfflineLoadPage::Show(int process_host_id, int render_view_id, OfflineLoadPage::OfflineLoadPage(TabContents* tab_contents, const GURL& url, Delegate* delegate) - : InterstitialPage(tab_contents, true, url), + : ChromeInterstitialPage(tab_contents, true, url), delegate_(delegate), proceeded_(false), ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)), @@ -211,7 +211,7 @@ void OfflineLoadPage::Observe(NotificationType type, Proceed(); } } else { - InterstitialPage::Observe(type, source, details); + ChromeInterstitialPage::Observe(type, source, details); } } |