[Session restore] Rename group name Enabled to Restore.
[chromium-blink-merge.git] / content / browser / frame_host / interstitial_page_impl.cc
blobf7ee28750a1a8a3f7650b53f409526e33226ac00
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
3 // found in the LICENSE file.
5 #include "content/browser/frame_host/interstitial_page_impl.h"
7 #include <vector>
9 #include "base/bind.h"
10 #include "base/compiler_specific.h"
11 #include "base/message_loop/message_loop.h"
12 #include "base/strings/string_util.h"
13 #include "base/strings/utf_string_conversions.h"
14 #include "base/threading/thread.h"
15 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
16 #include "content/browser/dom_storage/session_storage_namespace_impl.h"
17 #include "content/browser/frame_host/interstitial_page_navigator_impl.h"
18 #include "content/browser/frame_host/navigation_controller_impl.h"
19 #include "content/browser/frame_host/navigation_entry_impl.h"
20 #include "content/browser/loader/resource_dispatcher_host_impl.h"
21 #include "content/browser/renderer_host/render_process_host_impl.h"
22 #include "content/browser/renderer_host/render_view_host_delegate_view.h"
23 #include "content/browser/renderer_host/render_view_host_factory.h"
24 #include "content/browser/renderer_host/render_view_host_impl.h"
25 #include "content/browser/renderer_host/render_widget_host_view_base.h"
26 #include "content/browser/site_instance_impl.h"
27 #include "content/browser/web_contents/web_contents_impl.h"
28 #include "content/browser/web_contents/web_contents_view.h"
29 #include "content/common/frame_messages.h"
30 #include "content/common/view_messages.h"
31 #include "content/public/browser/browser_context.h"
32 #include "content/public/browser/browser_thread.h"
33 #include "content/public/browser/content_browser_client.h"
34 #include "content/public/browser/dom_operation_notification_details.h"
35 #include "content/public/browser/interstitial_page_delegate.h"
36 #include "content/public/browser/invalidate_type.h"
37 #include "content/public/browser/notification_service.h"
38 #include "content/public/browser/notification_source.h"
39 #include "content/public/browser/storage_partition.h"
40 #include "content/public/browser/user_metrics.h"
41 #include "content/public/browser/web_contents_delegate.h"
42 #include "content/public/common/bindings_policy.h"
43 #include "net/base/escape.h"
44 #include "net/url_request/url_request_context_getter.h"
45 #include "ui/base/page_transition_types.h"
47 using blink::WebDragOperation;
48 using blink::WebDragOperationsMask;
50 namespace content {
51 namespace {
53 void ResourceRequestHelper(ResourceDispatcherHostImpl* rdh,
54 int process_id,
55 int render_view_host_id,
56 ResourceRequestAction action) {
57 switch (action) {
58 case BLOCK:
59 rdh->BlockRequestsForRoute(process_id, render_view_host_id);
60 break;
61 case RESUME:
62 rdh->ResumeBlockedRequestsForRoute(process_id, render_view_host_id);
63 break;
64 case CANCEL:
65 rdh->CancelBlockedRequestsForRoute(process_id, render_view_host_id);
66 break;
67 default:
68 NOTREACHED();
72 } // namespace
74 class InterstitialPageImpl::InterstitialPageRVHDelegateView
75 : public RenderViewHostDelegateView {
76 public:
77 explicit InterstitialPageRVHDelegateView(InterstitialPageImpl* page);
79 // RenderViewHostDelegateView implementation:
80 #if defined(OS_MACOSX) || defined(OS_ANDROID)
81 void ShowPopupMenu(RenderFrameHost* render_frame_host,
82 const gfx::Rect& bounds,
83 int item_height,
84 double item_font_size,
85 int selected_item,
86 const std::vector<MenuItem>& items,
87 bool right_aligned,
88 bool allow_multiple_selection) override;
89 void HidePopupMenu() override;
90 #endif
91 void StartDragging(const DropData& drop_data,
92 WebDragOperationsMask operations_allowed,
93 const gfx::ImageSkia& image,
94 const gfx::Vector2d& image_offset,
95 const DragEventSourceInfo& event_info) override;
96 void UpdateDragCursor(WebDragOperation operation) override;
97 void GotFocus() override;
98 void TakeFocus(bool reverse) override;
99 virtual void OnFindReply(int request_id,
100 int number_of_matches,
101 const gfx::Rect& selection_rect,
102 int active_match_ordinal,
103 bool final_update);
105 private:
106 InterstitialPageImpl* interstitial_page_;
108 DISALLOW_COPY_AND_ASSIGN(InterstitialPageRVHDelegateView);
112 // We keep a map of the various blocking pages shown as the UI tests need to
113 // be able to retrieve them.
114 typedef std::map<WebContents*, InterstitialPageImpl*> InterstitialPageMap;
115 static InterstitialPageMap* g_web_contents_to_interstitial_page;
117 // Initializes g_web_contents_to_interstitial_page in a thread-safe manner.
118 // Should be called before accessing g_web_contents_to_interstitial_page.
119 static void InitInterstitialPageMap() {
120 if (!g_web_contents_to_interstitial_page)
121 g_web_contents_to_interstitial_page = new InterstitialPageMap;
124 InterstitialPage* InterstitialPage::Create(WebContents* web_contents,
125 bool new_navigation,
126 const GURL& url,
127 InterstitialPageDelegate* delegate) {
128 return new InterstitialPageImpl(
129 web_contents,
130 static_cast<RenderWidgetHostDelegate*>(
131 static_cast<WebContentsImpl*>(web_contents)),
132 new_navigation, url, delegate);
135 InterstitialPage* InterstitialPage::GetInterstitialPage(
136 WebContents* web_contents) {
137 InitInterstitialPageMap();
138 InterstitialPageMap::const_iterator iter =
139 g_web_contents_to_interstitial_page->find(web_contents);
140 if (iter == g_web_contents_to_interstitial_page->end())
141 return NULL;
143 return iter->second;
146 InterstitialPageImpl::InterstitialPageImpl(
147 WebContents* web_contents,
148 RenderWidgetHostDelegate* render_widget_host_delegate,
149 bool new_navigation,
150 const GURL& url,
151 InterstitialPageDelegate* delegate)
152 : underlying_content_observer_(web_contents, this),
153 web_contents_(web_contents),
154 controller_(static_cast<NavigationControllerImpl*>(
155 &web_contents->GetController())),
156 render_widget_host_delegate_(render_widget_host_delegate),
157 url_(url),
158 new_navigation_(new_navigation),
159 should_discard_pending_nav_entry_(new_navigation),
160 reload_on_dont_proceed_(false),
161 enabled_(true),
162 action_taken_(NO_ACTION),
163 render_view_host_(NULL),
164 // TODO(nasko): The InterstitialPageImpl will need to provide its own
165 // NavigationControllerImpl to the Navigator, which is separate from
166 // the WebContents one, so we can enforce no navigation policy here.
167 // While we get the code to a point to do this, pass NULL for it.
168 // TODO(creis): We will also need to pass delegates for the RVHM as we
169 // start to use it.
170 frame_tree_(new InterstitialPageNavigatorImpl(this, controller_),
171 this, this, this,
172 static_cast<WebContentsImpl*>(web_contents)),
173 original_child_id_(web_contents->GetRenderProcessHost()->GetID()),
174 original_rvh_id_(web_contents->GetRenderViewHost()->GetRoutingID()),
175 should_revert_web_contents_title_(false),
176 web_contents_was_loading_(false),
177 resource_dispatcher_host_notified_(false),
178 rvh_delegate_view_(new InterstitialPageRVHDelegateView(this)),
179 create_view_(true),
180 delegate_(delegate),
181 weak_ptr_factory_(this) {
182 InitInterstitialPageMap();
183 // It would be inconsistent to create an interstitial with no new navigation
184 // (which is the case when the interstitial was triggered by a sub-resource on
185 // a page) when we have a pending entry (in the process of loading a new top
186 // frame).
187 DCHECK(new_navigation || !web_contents->GetController().GetPendingEntry());
190 InterstitialPageImpl::~InterstitialPageImpl() {
193 void InterstitialPageImpl::Show() {
194 if (!enabled())
195 return;
197 // If an interstitial is already showing or about to be shown, close it before
198 // showing the new one.
199 // Be careful not to take an action on the old interstitial more than once.
200 InterstitialPageMap::const_iterator iter =
201 g_web_contents_to_interstitial_page->find(web_contents_);
202 if (iter != g_web_contents_to_interstitial_page->end()) {
203 InterstitialPageImpl* interstitial = iter->second;
204 if (interstitial->action_taken_ != NO_ACTION) {
205 interstitial->Hide();
206 } else {
207 // If we are currently showing an interstitial page for which we created
208 // a transient entry and a new interstitial is shown as the result of a
209 // new browser initiated navigation, then that transient entry has already
210 // been discarded and a new pending navigation entry created.
211 // So we should not discard that new pending navigation entry.
212 // See http://crbug.com/9791
213 if (new_navigation_ && interstitial->new_navigation_)
214 interstitial->should_discard_pending_nav_entry_= false;
215 interstitial->DontProceed();
219 // Block the resource requests for the render view host while it is hidden.
220 TakeActionOnResourceDispatcher(BLOCK);
221 // We need to be notified when the RenderViewHost is destroyed so we can
222 // cancel the blocked requests. We cannot do that on
223 // NOTIFY_WEB_CONTENTS_DESTROYED as at that point the RenderViewHost has
224 // already been destroyed.
225 notification_registrar_.Add(
226 this, NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED,
227 Source<RenderWidgetHost>(controller_->delegate()->GetRenderViewHost()));
229 // Update the g_web_contents_to_interstitial_page map.
230 iter = g_web_contents_to_interstitial_page->find(web_contents_);
231 DCHECK(iter == g_web_contents_to_interstitial_page->end());
232 (*g_web_contents_to_interstitial_page)[web_contents_] = this;
234 if (new_navigation_) {
235 NavigationEntryImpl* entry = new NavigationEntryImpl;
236 entry->SetURL(url_);
237 entry->SetVirtualURL(url_);
238 entry->set_page_type(PAGE_TYPE_INTERSTITIAL);
240 // Give delegates a chance to set some states on the navigation entry.
241 delegate_->OverrideEntry(entry);
243 controller_->SetTransientEntry(entry);
246 DCHECK(!render_view_host_);
247 render_view_host_ = CreateRenderViewHost();
248 render_view_host_->AttachToFrameTree();
249 CreateWebContentsView();
251 std::string data_url = "data:text/html;charset=utf-8," +
252 net::EscapePath(delegate_->GetHTMLContents());
253 frame_tree_.root()->current_frame_host()->NavigateToURL(GURL(data_url));
255 notification_registrar_.Add(this, NOTIFICATION_NAV_ENTRY_PENDING,
256 Source<NavigationController>(controller_));
259 void InterstitialPageImpl::Hide() {
260 // We may have already been hidden, and are just waiting to be deleted.
261 // We can't check for enabled() here, because some callers have already
262 // called Disable.
263 if (!render_view_host_)
264 return;
266 Disable();
268 RenderWidgetHostView* old_view =
269 controller_->delegate()->GetRenderViewHost()->GetView();
270 if (controller_->delegate()->GetInterstitialPage() == this &&
271 old_view &&
272 !old_view->IsShowing() &&
273 !controller_->delegate()->IsHidden()) {
274 // Show the original RVH since we're going away. Note it might not exist if
275 // the renderer crashed while the interstitial was showing.
276 // Note that it is important that we don't call Show() if the view is
277 // already showing. That would result in bad things (unparented HWND on
278 // Windows for example) happening.
279 old_view->Show();
282 // If the focus was on the interstitial, let's keep it to the page.
283 // (Note that in unit-tests the RVH may not have a view).
284 if (render_view_host_->GetView() &&
285 render_view_host_->GetView()->HasFocus() &&
286 controller_->delegate()->GetRenderViewHost()->GetView()) {
287 controller_->delegate()->GetRenderViewHost()->GetView()->Focus();
290 // Delete this and call Shutdown on the RVH asynchronously, as we may have
291 // been called from a RVH delegate method, and we can't delete the RVH out
292 // from under itself.
293 base::MessageLoop::current()->PostNonNestableTask(
294 FROM_HERE,
295 base::Bind(&InterstitialPageImpl::Shutdown,
296 weak_ptr_factory_.GetWeakPtr()));
297 render_view_host_ = NULL;
298 frame_tree_.ResetForMainFrameSwap();
299 controller_->delegate()->DetachInterstitialPage();
300 // Let's revert to the original title if necessary.
301 NavigationEntry* entry = controller_->GetVisibleEntry();
302 if (entry && !new_navigation_ && should_revert_web_contents_title_) {
303 entry->SetTitle(original_web_contents_title_);
304 controller_->delegate()->NotifyNavigationStateChanged(
305 INVALIDATE_TYPE_TITLE);
308 InterstitialPageMap::iterator iter =
309 g_web_contents_to_interstitial_page->find(web_contents_);
310 DCHECK(iter != g_web_contents_to_interstitial_page->end());
311 if (iter != g_web_contents_to_interstitial_page->end())
312 g_web_contents_to_interstitial_page->erase(iter);
314 // Clear the WebContents pointer, because it may now be deleted.
315 // This signifies that we are in the process of shutting down.
316 web_contents_ = NULL;
319 void InterstitialPageImpl::Observe(
320 int type,
321 const NotificationSource& source,
322 const NotificationDetails& details) {
323 switch (type) {
324 case NOTIFICATION_NAV_ENTRY_PENDING:
325 // We are navigating away from the interstitial (the user has typed a URL
326 // in the location bar or clicked a bookmark). Make sure clicking on the
327 // interstitial will have no effect. Also cancel any blocked requests
328 // on the ResourceDispatcherHost. Note that when we get this notification
329 // the RenderViewHost has not yet navigated so we'll unblock the
330 // RenderViewHost before the resource request for the new page we are
331 // navigating arrives in the ResourceDispatcherHost. This ensures that
332 // request won't be blocked if the same RenderViewHost was used for the
333 // new navigation.
334 Disable();
335 TakeActionOnResourceDispatcher(CANCEL);
336 break;
337 case NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED:
338 if (action_taken_ == NO_ACTION) {
339 // The RenderViewHost is being destroyed (as part of the tab being
340 // closed); make sure we clear the blocked requests.
341 RenderViewHost* rvh = static_cast<RenderViewHost*>(
342 static_cast<RenderViewHostImpl*>(
343 RenderWidgetHostImpl::From(
344 Source<RenderWidgetHost>(source).ptr())));
345 DCHECK(rvh->GetProcess()->GetID() == original_child_id_ &&
346 rvh->GetRoutingID() == original_rvh_id_);
347 TakeActionOnResourceDispatcher(CANCEL);
349 break;
350 default:
351 NOTREACHED();
355 bool InterstitialPageImpl::OnMessageReceived(RenderFrameHost* render_frame_host,
356 const IPC::Message& message) {
357 if (render_frame_host->GetRenderViewHost() != render_view_host_) {
358 DCHECK(!render_view_host_)
359 << "We expect an interstitial page to have only a single RVH";
360 return false;
363 bool handled = true;
364 IPC_BEGIN_MESSAGE_MAP(InterstitialPageImpl, message)
365 IPC_MESSAGE_HANDLER(FrameHostMsg_DomOperationResponse,
366 OnDomOperationResponse)
367 IPC_MESSAGE_UNHANDLED(handled = false)
368 IPC_END_MESSAGE_MAP()
370 return handled;
373 bool InterstitialPageImpl::OnMessageReceived(RenderViewHost* render_view_host,
374 const IPC::Message& message) {
375 return false;
378 void InterstitialPageImpl::RenderFrameCreated(
379 RenderFrameHost* render_frame_host) {
380 // Note this is only for subframes in the interstitial, the notification for
381 // the main frame happens in RenderViewCreated.
382 controller_->delegate()->RenderFrameForInterstitialPageCreated(
383 render_frame_host);
386 void InterstitialPageImpl::UpdateTitle(
387 RenderFrameHost* render_frame_host,
388 int32 page_id,
389 const base::string16& title,
390 base::i18n::TextDirection title_direction) {
391 if (!enabled())
392 return;
394 RenderViewHost* render_view_host = render_frame_host->GetRenderViewHost();
395 DCHECK(render_view_host == render_view_host_);
396 NavigationEntry* entry = controller_->GetVisibleEntry();
397 if (!entry) {
398 // There may be no visible entry if no URL has committed (e.g., after
399 // window.open("")). InterstitialPages with the new_navigation flag create
400 // a transient NavigationEntry and thus have a visible entry. However,
401 // interstitials can still be created when there is no visible entry. For
402 // example, the opener window may inject content into the initial blank
403 // page, which might trigger a SafeBrowsingBlockingPage.
404 return;
407 // If this interstitial is shown on an existing navigation entry, we'll need
408 // to remember its title so we can revert to it when hidden.
409 if (!new_navigation_ && !should_revert_web_contents_title_) {
410 original_web_contents_title_ = entry->GetTitle();
411 should_revert_web_contents_title_ = true;
413 // TODO(evan): make use of title_direction.
414 // http://code.google.com/p/chromium/issues/detail?id=27094
415 entry->SetTitle(title);
416 controller_->delegate()->NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE);
419 AccessibilityMode InterstitialPageImpl::GetAccessibilityMode() const {
420 if (web_contents_)
421 return static_cast<WebContentsImpl*>(web_contents_)->GetAccessibilityMode();
422 else
423 return AccessibilityModeOff;
426 RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
427 return rvh_delegate_view_.get();
430 const GURL& InterstitialPageImpl::GetMainFrameLastCommittedURL() const {
431 return url_;
434 void InterstitialPageImpl::RenderViewTerminated(
435 RenderViewHost* render_view_host,
436 base::TerminationStatus status,
437 int error_code) {
438 // Our renderer died. This should not happen in normal cases.
439 // If we haven't already started shutdown, just dismiss the interstitial.
440 // We cannot check for enabled() here, because we may have called Disable
441 // without calling Hide.
442 if (render_view_host_)
443 DontProceed();
446 void InterstitialPageImpl::DidNavigate(
447 RenderViewHost* render_view_host,
448 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {
449 // A fast user could have navigated away from the page that triggered the
450 // interstitial while the interstitial was loading, that would have disabled
451 // us. In that case we can dismiss ourselves.
452 if (!enabled()) {
453 DontProceed();
454 return;
456 if (ui::PageTransitionCoreTypeIs(params.transition,
457 ui::PAGE_TRANSITION_AUTO_SUBFRAME)) {
458 // No need to handle navigate message from iframe in the interstitial page.
459 return;
462 // The RenderViewHost has loaded its contents, we can show it now.
463 if (!controller_->delegate()->IsHidden())
464 render_view_host_->GetView()->Show();
465 controller_->delegate()->AttachInterstitialPage(this);
467 RenderWidgetHostView* rwh_view =
468 controller_->delegate()->GetRenderViewHost()->GetView();
470 // The RenderViewHost may already have crashed before we even get here.
471 if (rwh_view) {
472 // If the page has focus, focus the interstitial.
473 if (rwh_view->HasFocus())
474 Focus();
476 // Hide the original RVH since we're showing the interstitial instead.
477 rwh_view->Hide();
480 // Notify the tab we are not loading so the throbber is stopped. It also
481 // causes a WebContentsObserver::DidStopLoading callback that the
482 // AutomationProvider (used by the UI tests) expects to consider a navigation
483 // as complete. Without this, navigating in a UI test to a URL that triggers
484 // an interstitial would hang.
485 web_contents_was_loading_ = controller_->delegate()->IsLoading();
486 controller_->delegate()->SetIsLoading(false, true, NULL);
489 RendererPreferences InterstitialPageImpl::GetRendererPrefs(
490 BrowserContext* browser_context) const {
491 delegate_->OverrideRendererPrefs(&renderer_preferences_);
492 return renderer_preferences_;
495 void InterstitialPageImpl::RenderWidgetDeleted(
496 RenderWidgetHostImpl* render_widget_host) {
497 // TODO(creis): Remove this method once we verify the shutdown path is sane.
498 CHECK(!web_contents_);
501 bool InterstitialPageImpl::PreHandleKeyboardEvent(
502 const NativeWebKeyboardEvent& event,
503 bool* is_keyboard_shortcut) {
504 if (!enabled())
505 return false;
506 return render_widget_host_delegate_->PreHandleKeyboardEvent(
507 event, is_keyboard_shortcut);
510 void InterstitialPageImpl::HandleKeyboardEvent(
511 const NativeWebKeyboardEvent& event) {
512 if (enabled())
513 render_widget_host_delegate_->HandleKeyboardEvent(event);
516 #if defined(OS_WIN)
517 gfx::NativeViewAccessible
518 InterstitialPageImpl::GetParentNativeViewAccessible() {
519 if (web_contents_) {
520 WebContentsImpl* wci = static_cast<WebContentsImpl*>(web_contents_);
521 return wci->GetParentNativeViewAccessible();
523 return NULL;
525 #endif
527 WebContents* InterstitialPageImpl::web_contents() const {
528 return web_contents_;
531 RenderViewHostImpl* InterstitialPageImpl::CreateRenderViewHost() {
532 if (!enabled())
533 return NULL;
535 // Interstitial pages don't want to share the session storage so we mint a
536 // new one.
537 BrowserContext* browser_context = web_contents()->GetBrowserContext();
538 scoped_refptr<SiteInstance> site_instance =
539 SiteInstance::Create(browser_context);
540 DOMStorageContextWrapper* dom_storage_context =
541 static_cast<DOMStorageContextWrapper*>(
542 BrowserContext::GetStoragePartition(
543 browser_context, site_instance.get())->GetDOMStorageContext());
544 session_storage_namespace_ =
545 new SessionStorageNamespaceImpl(dom_storage_context);
547 // Use the RenderViewHost from our FrameTree.
548 frame_tree_.root()->render_manager()->Init(
549 browser_context, site_instance.get(), MSG_ROUTING_NONE, MSG_ROUTING_NONE);
550 return frame_tree_.root()->current_frame_host()->render_view_host();
553 WebContentsView* InterstitialPageImpl::CreateWebContentsView() {
554 if (!enabled() || !create_view_)
555 return NULL;
556 WebContentsView* wcv =
557 static_cast<WebContentsImpl*>(web_contents())->GetView();
558 RenderWidgetHostViewBase* view =
559 wcv->CreateViewForWidget(render_view_host_, false);
560 render_view_host_->SetView(view);
561 render_view_host_->AllowBindings(BINDINGS_POLICY_DOM_AUTOMATION);
563 int32 max_page_id = web_contents()->
564 GetMaxPageIDForSiteInstance(render_view_host_->GetSiteInstance());
565 render_view_host_->CreateRenderView(base::string16(),
566 MSG_ROUTING_NONE,
567 MSG_ROUTING_NONE,
568 max_page_id,
569 false);
570 controller_->delegate()->RenderFrameForInterstitialPageCreated(
571 frame_tree_.root()->current_frame_host());
572 view->SetSize(web_contents()->GetContainerBounds().size());
573 // Don't show the interstitial until we have navigated to it.
574 view->Hide();
575 return wcv;
578 void InterstitialPageImpl::Proceed() {
579 // Don't repeat this if we are already shutting down. We cannot check for
580 // enabled() here, because we may have called Disable without calling Hide.
581 if (!render_view_host_)
582 return;
584 if (action_taken_ != NO_ACTION) {
585 NOTREACHED();
586 return;
588 Disable();
589 action_taken_ = PROCEED_ACTION;
591 // Resumes the throbber, if applicable.
592 if (web_contents_was_loading_)
593 controller_->delegate()->SetIsLoading(true, true, NULL);
595 // If this is a new navigation, the old page is going away, so we cancel any
596 // blocked requests for it. If it is not a new navigation, then it means the
597 // interstitial was shown as a result of a resource loading in the page.
598 // Since the user wants to proceed, we'll let any blocked request go through.
599 if (new_navigation_)
600 TakeActionOnResourceDispatcher(CANCEL);
601 else
602 TakeActionOnResourceDispatcher(RESUME);
604 // No need to hide if we are a new navigation, we'll get hidden when the
605 // navigation is committed.
606 if (!new_navigation_) {
607 Hide();
608 delegate_->OnProceed();
609 return;
612 delegate_->OnProceed();
615 void InterstitialPageImpl::DontProceed() {
616 // Don't repeat this if we are already shutting down. We cannot check for
617 // enabled() here, because we may have called Disable without calling Hide.
618 if (!render_view_host_)
619 return;
620 DCHECK(action_taken_ != DONT_PROCEED_ACTION);
622 Disable();
623 action_taken_ = DONT_PROCEED_ACTION;
625 // If this is a new navigation, we are returning to the original page, so we
626 // resume blocked requests for it. If it is not a new navigation, then it
627 // means the interstitial was shown as a result of a resource loading in the
628 // page and we won't return to the original page, so we cancel blocked
629 // requests in that case.
630 if (new_navigation_)
631 TakeActionOnResourceDispatcher(RESUME);
632 else
633 TakeActionOnResourceDispatcher(CANCEL);
635 if (should_discard_pending_nav_entry_) {
636 // Since no navigation happens we have to discard the transient entry
637 // explicitely. Note that by calling DiscardNonCommittedEntries() we also
638 // discard the pending entry, which is what we want, since the navigation is
639 // cancelled.
640 controller_->DiscardNonCommittedEntries();
643 if (reload_on_dont_proceed_)
644 controller_->Reload(true);
646 Hide();
647 delegate_->OnDontProceed();
650 void InterstitialPageImpl::CancelForNavigation() {
651 // The user is trying to navigate away. We should unblock the renderer and
652 // disable the interstitial, but keep it visible until the navigation
653 // completes.
654 Disable();
655 // If this interstitial was shown for a new navigation, allow any navigations
656 // on the original page to resume (e.g., subresource requests, XHRs, etc).
657 // Otherwise, cancel the pending, possibly dangerous navigations.
658 if (new_navigation_)
659 TakeActionOnResourceDispatcher(RESUME);
660 else
661 TakeActionOnResourceDispatcher(CANCEL);
664 void InterstitialPageImpl::SetSize(const gfx::Size& size) {
665 if (!enabled())
666 return;
667 #if !defined(OS_MACOSX)
668 // When a tab is closed, we might be resized after our view was NULLed
669 // (typically if there was an info-bar).
670 if (render_view_host_->GetView())
671 render_view_host_->GetView()->SetSize(size);
672 #else
673 // TODO(port): Does Mac need to SetSize?
674 NOTIMPLEMENTED();
675 #endif
678 void InterstitialPageImpl::Focus() {
679 // Focus the native window.
680 if (!enabled())
681 return;
682 render_view_host_->GetView()->Focus();
685 void InterstitialPageImpl::FocusThroughTabTraversal(bool reverse) {
686 if (!enabled())
687 return;
688 render_view_host_->SetInitialFocus(reverse);
691 RenderWidgetHostView* InterstitialPageImpl::GetView() {
692 return render_view_host_->GetView();
695 RenderFrameHost* InterstitialPageImpl::GetMainFrame() const {
696 return render_view_host_->GetMainFrame();
699 InterstitialPageDelegate* InterstitialPageImpl::GetDelegateForTesting() {
700 return delegate_.get();
703 void InterstitialPageImpl::DontCreateViewForTesting() {
704 create_view_ = false;
707 gfx::Rect InterstitialPageImpl::GetRootWindowResizerRect() const {
708 return gfx::Rect();
711 void InterstitialPageImpl::CreateNewWindow(
712 int render_process_id,
713 int route_id,
714 int main_frame_route_id,
715 const ViewHostMsg_CreateWindow_Params& params,
716 SessionStorageNamespace* session_storage_namespace) {
717 NOTREACHED() << "InterstitialPage does not support showing popups yet.";
720 void InterstitialPageImpl::CreateNewWidget(int render_process_id,
721 int route_id,
722 blink::WebPopupType popup_type) {
723 NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
726 void InterstitialPageImpl::CreateNewFullscreenWidget(int render_process_id,
727 int route_id) {
728 NOTREACHED()
729 << "InterstitialPage does not support showing full screen popups.";
732 void InterstitialPageImpl::ShowCreatedWindow(int route_id,
733 WindowOpenDisposition disposition,
734 const gfx::Rect& initial_rect,
735 bool user_gesture) {
736 NOTREACHED() << "InterstitialPage does not support showing popups yet.";
739 void InterstitialPageImpl::ShowCreatedWidget(int route_id,
740 const gfx::Rect& initial_rect) {
741 NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
744 void InterstitialPageImpl::ShowCreatedFullscreenWidget(int route_id) {
745 NOTREACHED()
746 << "InterstitialPage does not support showing full screen popups.";
749 SessionStorageNamespace* InterstitialPageImpl::GetSessionStorageNamespace(
750 SiteInstance* instance) {
751 return session_storage_namespace_.get();
754 FrameTree* InterstitialPageImpl::GetFrameTree() {
755 return &frame_tree_;
758 void InterstitialPageImpl::Disable() {
759 enabled_ = false;
762 void InterstitialPageImpl::Shutdown() {
763 delete this;
766 void InterstitialPageImpl::OnNavigatingAwayOrTabClosing() {
767 if (action_taken_ == NO_ACTION) {
768 // We are navigating away from the interstitial or closing a tab with an
769 // interstitial. Default to DontProceed(). We don't just call Hide as
770 // subclasses will almost certainly override DontProceed to do some work
771 // (ex: close pending connections).
772 DontProceed();
773 } else {
774 // User decided to proceed and either the navigation was committed or
775 // the tab was closed before that.
776 Hide();
780 void InterstitialPageImpl::TakeActionOnResourceDispatcher(
781 ResourceRequestAction action) {
782 DCHECK_CURRENTLY_ON(BrowserThread::UI);
784 if (action == CANCEL || action == RESUME) {
785 if (resource_dispatcher_host_notified_)
786 return;
787 resource_dispatcher_host_notified_ = true;
790 // The tab might not have a render_view_host if it was closed (in which case,
791 // we have taken care of the blocked requests when processing
792 // NOTIFY_RENDER_WIDGET_HOST_DESTROYED.
793 // Also we need to test there is a ResourceDispatcherHostImpl, as when unit-
794 // tests we don't have one.
795 RenderViewHostImpl* rvh = RenderViewHostImpl::FromID(original_child_id_,
796 original_rvh_id_);
797 if (!rvh || !ResourceDispatcherHostImpl::Get())
798 return;
800 BrowserThread::PostTask(
801 BrowserThread::IO,
802 FROM_HERE,
803 base::Bind(
804 &ResourceRequestHelper,
805 ResourceDispatcherHostImpl::Get(),
806 original_child_id_,
807 original_rvh_id_,
808 action));
811 void InterstitialPageImpl::OnDomOperationResponse(
812 const std::string& json_string,
813 int automation_id) {
814 // Needed by test code.
815 DomOperationNotificationDetails details(json_string, automation_id);
816 NotificationService::current()->Notify(
817 NOTIFICATION_DOM_OPERATION_RESPONSE,
818 Source<WebContents>(web_contents()),
819 Details<DomOperationNotificationDetails>(&details));
821 if (!enabled())
822 return;
823 delegate_->CommandReceived(details.json);
827 InterstitialPageImpl::InterstitialPageRVHDelegateView::
828 InterstitialPageRVHDelegateView(InterstitialPageImpl* page)
829 : interstitial_page_(page) {
832 #if defined(OS_MACOSX) || defined(OS_ANDROID)
833 void InterstitialPageImpl::InterstitialPageRVHDelegateView::ShowPopupMenu(
834 RenderFrameHost* render_frame_host,
835 const gfx::Rect& bounds,
836 int item_height,
837 double item_font_size,
838 int selected_item,
839 const std::vector<MenuItem>& items,
840 bool right_aligned,
841 bool allow_multiple_selection) {
842 NOTREACHED() << "InterstitialPage does not support showing popup menus.";
845 void InterstitialPageImpl::InterstitialPageRVHDelegateView::HidePopupMenu() {
846 NOTREACHED() << "InterstitialPage does not support showing popup menus.";
848 #endif
850 void InterstitialPageImpl::InterstitialPageRVHDelegateView::StartDragging(
851 const DropData& drop_data,
852 WebDragOperationsMask allowed_operations,
853 const gfx::ImageSkia& image,
854 const gfx::Vector2d& image_offset,
855 const DragEventSourceInfo& event_info) {
856 interstitial_page_->render_view_host_->DragSourceSystemDragEnded();
857 DVLOG(1) << "InterstitialPage does not support dragging yet.";
860 void InterstitialPageImpl::InterstitialPageRVHDelegateView::UpdateDragCursor(
861 WebDragOperation) {
862 NOTREACHED() << "InterstitialPage does not support dragging yet.";
865 void InterstitialPageImpl::InterstitialPageRVHDelegateView::GotFocus() {
866 WebContents* web_contents = interstitial_page_->web_contents();
867 if (web_contents && web_contents->GetDelegate())
868 web_contents->GetDelegate()->WebContentsFocused(web_contents);
871 void InterstitialPageImpl::InterstitialPageRVHDelegateView::TakeFocus(
872 bool reverse) {
873 if (!interstitial_page_->web_contents())
874 return;
875 WebContentsImpl* web_contents =
876 static_cast<WebContentsImpl*>(interstitial_page_->web_contents());
877 if (!web_contents->GetDelegateView())
878 return;
880 web_contents->GetDelegateView()->TakeFocus(reverse);
883 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply(
884 int request_id, int number_of_matches, const gfx::Rect& selection_rect,
885 int active_match_ordinal, bool final_update) {
888 InterstitialPageImpl::UnderlyingContentObserver::UnderlyingContentObserver(
889 WebContents* web_contents,
890 InterstitialPageImpl* interstitial)
891 : WebContentsObserver(web_contents), interstitial_(interstitial) {
894 void InterstitialPageImpl::UnderlyingContentObserver::NavigationEntryCommitted(
895 const LoadCommittedDetails& load_details) {
896 interstitial_->OnNavigatingAwayOrTabClosing();
899 void InterstitialPageImpl::UnderlyingContentObserver::WebContentsDestroyed() {
900 interstitial_->OnNavigatingAwayOrTabClosing();
903 } // namespace content