| Index: chrome/browser/tab_contents/interstitial_page.cc
|
| diff --git a/chrome/browser/tab_contents/interstitial_page.cc b/chrome/browser/tab_contents/interstitial_page.cc
|
| index d3c04298ad7a50b09cd0844ec4a639c807d4dfb3..996620f9e26343315d2472899aef5dad39609b26 100644
|
| --- a/chrome/browser/tab_contents/interstitial_page.cc
|
| +++ b/chrome/browser/tab_contents/interstitial_page.cc
|
| @@ -461,6 +461,10 @@ void InterstitialPage::Proceed() {
|
| }
|
| }
|
|
|
| +std::string InterstitialPage::GetHTMLContents() {
|
| + return std::string();
|
| +}
|
| +
|
| void InterstitialPage::DontProceed() {
|
| DCHECK(action_taken_ != DONT_PROCEED_ACTION);
|
|
|
| @@ -527,6 +531,10 @@ void InterstitialPage::FocusThroughTabTraversal(bool reverse) {
|
| render_view_host_->SetInitialFocus(reverse);
|
| }
|
|
|
| +ViewType::Type InterstitialPage::GetRenderViewType() const {
|
| + return ViewType::INTERSTITIAL_PAGE;
|
| +}
|
| +
|
| void InterstitialPage::Disable() {
|
| enabled_ = false;
|
| }
|
|
|