| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/frame_host/interstitial_page_impl.h" | 5 #include "content/browser/frame_host/interstitial_page_impl.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 353 |
| 354 void InterstitialPageImpl::NavigationEntryCommitted( | 354 void InterstitialPageImpl::NavigationEntryCommitted( |
| 355 const LoadCommittedDetails& load_details) { | 355 const LoadCommittedDetails& load_details) { |
| 356 OnNavigatingAwayOrTabClosing(); | 356 OnNavigatingAwayOrTabClosing(); |
| 357 } | 357 } |
| 358 | 358 |
| 359 void InterstitialPageImpl::WebContentsWillBeDestroyed() { | 359 void InterstitialPageImpl::WebContentsWillBeDestroyed() { |
| 360 OnNavigatingAwayOrTabClosing(); | 360 OnNavigatingAwayOrTabClosing(); |
| 361 } | 361 } |
| 362 | 362 |
| 363 void InterstitialPageImpl::WebContentsDestroyed(WebContents* web_contents) { | 363 void InterstitialPageImpl::WebContentsDestroyed() { |
| 364 // WebContentsImpl will only call WebContentsWillBeDestroyed for interstitial | |
| 365 // pages that it knows about, pages that called | |
| 366 // WebContentsImpl::AttachInterstitialPage. But it's possible to have an | |
| 367 // interstitial page that never progressed that far. In that case, ensure that | |
| 368 // this interstitial page is destroyed. (And if it was attached, and | |
| 369 // OnNavigatingAwayOrTabClosing was called, it's safe to call | |
| 370 // OnNavigatingAwayOrTabClosing twice.) | |
| 371 OnNavigatingAwayOrTabClosing(); | 364 OnNavigatingAwayOrTabClosing(); |
| 372 } | 365 } |
| 373 | 366 |
| 374 bool InterstitialPageImpl::OnMessageReceived(RenderFrameHost* render_frame_host, | 367 bool InterstitialPageImpl::OnMessageReceived(RenderFrameHost* render_frame_host, |
| 375 const IPC::Message& message) { | 368 const IPC::Message& message) { |
| 376 return OnMessageReceived(message); | 369 return OnMessageReceived(message); |
| 377 } | 370 } |
| 378 | 371 |
| 379 bool InterstitialPageImpl::OnMessageReceived(RenderViewHost* render_view_host, | 372 bool InterstitialPageImpl::OnMessageReceived(RenderViewHost* render_view_host, |
| 380 const IPC::Message& message) { | 373 const IPC::Message& message) { |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 | 902 |
| 910 web_contents->GetDelegateView()->TakeFocus(reverse); | 903 web_contents->GetDelegateView()->TakeFocus(reverse); |
| 911 } | 904 } |
| 912 | 905 |
| 913 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply( | 906 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply( |
| 914 int request_id, int number_of_matches, const gfx::Rect& selection_rect, | 907 int request_id, int number_of_matches, const gfx::Rect& selection_rect, |
| 915 int active_match_ordinal, bool final_update) { | 908 int active_match_ordinal, bool final_update) { |
| 916 } | 909 } |
| 917 | 910 |
| 918 } // namespace content | 911 } // namespace content |
| OLD | NEW |