| 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 b2dec89df853e89454289e6f796c0e0b60809c0f..34e008ca321bc5153d768e985b951aefe4fc5e29 100644
|
| --- a/chrome/browser/tab_contents/interstitial_page.cc
|
| +++ b/chrome/browser/tab_contents/interstitial_page.cc
|
| @@ -457,13 +457,13 @@ void InterstitialPage::DontProceed() {
|
| }
|
|
|
| void InterstitialPage::SetSize(const gfx::Size& size) {
|
| -#if defined(OS_WIN)
|
| +#if defined(OS_WIN) || defined(OS_LINUX)
|
| // When a tab is closed, we might be resized after our view was NULLed
|
| // (typically if there was an info-bar).
|
| if (render_view_host_->view())
|
| render_view_host_->view()->SetSize(size);
|
| #else
|
| - // TODO(port): do Mac or Linux need to SetSize?
|
| + // TODO(port): Does Mac need to SetSize?
|
| NOTIMPLEMENTED();
|
| #endif
|
| }
|
|
|