Remove PlatformFile from profile_browsertest
[chromium-blink-merge.git] / content / browser / frame_host / interstitial_page_impl.cc
blobfd9363908b79f907696c77b0371059878d4c1a10
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_factory.h"
23 #include "content/browser/renderer_host/render_view_host_impl.h"
24 #include "content/browser/site_instance_impl.h"
25 #include "content/browser/web_contents/web_contents_impl.h"
26 #include "content/common/frame_messages.h"
27 #include "content/common/view_messages.h"
28 #include "content/port/browser/render_view_host_delegate_view.h"
29 #include "content/port/browser/render_widget_host_view_port.h"
30 #include "content/port/browser/web_contents_view_port.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 "content/public/common/page_transition_types.h"
44 #include "net/base/escape.h"
45 #include "net/url_request/url_request_context_getter.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 virtual void ShowPopupMenu(const gfx::Rect& bounds,
82 int item_height,
83 double item_font_size,
84 int selected_item,
85 const std::vector<MenuItem>& items,
86 bool right_aligned,
87 bool allow_multiple_selection) OVERRIDE;
88 virtual void HidePopupMenu() OVERRIDE;
89 #endif
90 virtual void StartDragging(const DropData& drop_data,
91 WebDragOperationsMask operations_allowed,
92 const gfx::ImageSkia& image,
93 const gfx::Vector2d& image_offset,
94 const DragEventSourceInfo& event_info) OVERRIDE;
95 virtual void UpdateDragCursor(WebDragOperation operation) OVERRIDE;
96 virtual void GotFocus() OVERRIDE;
97 virtual void TakeFocus(bool reverse) OVERRIDE;
98 virtual void OnFindReply(int request_id,
99 int number_of_matches,
100 const gfx::Rect& selection_rect,
101 int active_match_ordinal,
102 bool final_update);
104 private:
105 InterstitialPageImpl* interstitial_page_;
107 DISALLOW_COPY_AND_ASSIGN(InterstitialPageRVHDelegateView);
111 // We keep a map of the various blocking pages shown as the UI tests need to
112 // be able to retrieve them.
113 typedef std::map<WebContents*, InterstitialPageImpl*> InterstitialPageMap;
114 static InterstitialPageMap* g_web_contents_to_interstitial_page;
116 // Initializes g_web_contents_to_interstitial_page in a thread-safe manner.
117 // Should be called before accessing g_web_contents_to_interstitial_page.
118 static void InitInterstitialPageMap() {
119 if (!g_web_contents_to_interstitial_page)
120 g_web_contents_to_interstitial_page = new InterstitialPageMap;
123 InterstitialPage* InterstitialPage::Create(WebContents* web_contents,
124 bool new_navigation,
125 const GURL& url,
126 InterstitialPageDelegate* delegate) {
127 return new InterstitialPageImpl(
128 web_contents,
129 static_cast<RenderWidgetHostDelegate*>(
130 static_cast<WebContentsImpl*>(web_contents)),
131 new_navigation, url, delegate);
134 InterstitialPage* InterstitialPage::GetInterstitialPage(
135 WebContents* web_contents) {
136 InitInterstitialPageMap();
137 InterstitialPageMap::const_iterator iter =
138 g_web_contents_to_interstitial_page->find(web_contents);
139 if (iter == g_web_contents_to_interstitial_page->end())
140 return NULL;
142 return iter->second;
145 InterstitialPageImpl::InterstitialPageImpl(
146 WebContents* web_contents,
147 RenderWidgetHostDelegate* render_widget_host_delegate,
148 bool new_navigation,
149 const GURL& url,
150 InterstitialPageDelegate* delegate)
151 : WebContentsObserver(web_contents),
152 web_contents_(web_contents),
153 controller_(static_cast<NavigationControllerImpl*>(
154 &web_contents->GetController())),
155 render_widget_host_delegate_(render_widget_host_delegate),
156 url_(url),
157 new_navigation_(new_navigation),
158 should_discard_pending_nav_entry_(new_navigation),
159 reload_on_dont_proceed_(false),
160 enabled_(true),
161 action_taken_(NO_ACTION),
162 render_view_host_(NULL),
163 // TODO(nasko): The InterstitialPageImpl will need to provide its own
164 // NavigationControllerImpl to the Navigator, which is separate from
165 // the WebContents one, so we can enforce no navigation policy here.
166 // While we get the code to a point to do this, pass NULL for it.
167 // TODO(creis): We will also need to pass delegates for the RVHM as we
168 // start to use it.
169 frame_tree_(new InterstitialPageNavigatorImpl(this, controller_),
170 this, this, this,
171 static_cast<WebContentsImpl*>(web_contents)),
172 original_child_id_(web_contents->GetRenderProcessHost()->GetID()),
173 original_rvh_id_(web_contents->GetRenderViewHost()->GetRoutingID()),
174 should_revert_web_contents_title_(false),
175 web_contents_was_loading_(false),
176 resource_dispatcher_host_notified_(false),
177 rvh_delegate_view_(new InterstitialPageRVHDelegateView(this)),
178 create_view_(true),
179 delegate_(delegate),
180 weak_ptr_factory_(this) {
181 InitInterstitialPageMap();
182 // It would be inconsistent to create an interstitial with no new navigation
183 // (which is the case when the interstitial was triggered by a sub-resource on
184 // a page) when we have a pending entry (in the process of loading a new top
185 // frame).
186 DCHECK(new_navigation || !web_contents->GetController().GetPendingEntry());
189 InterstitialPageImpl::~InterstitialPageImpl() {
192 void InterstitialPageImpl::Show() {
193 if (!enabled())
194 return;
196 // If an interstitial is already showing or about to be shown, close it before
197 // showing the new one.
198 // Be careful not to take an action on the old interstitial more than once.
199 InterstitialPageMap::const_iterator iter =
200 g_web_contents_to_interstitial_page->find(web_contents_);
201 if (iter != g_web_contents_to_interstitial_page->end()) {
202 InterstitialPageImpl* interstitial = iter->second;
203 if (interstitial->action_taken_ != NO_ACTION) {
204 interstitial->Hide();
205 } else {
206 // If we are currently showing an interstitial page for which we created
207 // a transient entry and a new interstitial is shown as the result of a
208 // new browser initiated navigation, then that transient entry has already
209 // been discarded and a new pending navigation entry created.
210 // So we should not discard that new pending navigation entry.
211 // See http://crbug.com/9791
212 if (new_navigation_ && interstitial->new_navigation_)
213 interstitial->should_discard_pending_nav_entry_= false;
214 interstitial->DontProceed();
218 // Block the resource requests for the render view host while it is hidden.
219 TakeActionOnResourceDispatcher(BLOCK);
220 // We need to be notified when the RenderViewHost is destroyed so we can
221 // cancel the blocked requests. We cannot do that on
222 // NOTIFY_WEB_CONTENTS_DESTROYED as at that point the RenderViewHost has
223 // already been destroyed.
224 notification_registrar_.Add(
225 this, NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED,
226 Source<RenderWidgetHost>(controller_->delegate()->GetRenderViewHost()));
228 // Update the g_web_contents_to_interstitial_page map.
229 iter = g_web_contents_to_interstitial_page->find(web_contents_);
230 DCHECK(iter == g_web_contents_to_interstitial_page->end());
231 (*g_web_contents_to_interstitial_page)[web_contents_] = this;
233 if (new_navigation_) {
234 NavigationEntryImpl* entry = new NavigationEntryImpl;
235 entry->SetURL(url_);
236 entry->SetVirtualURL(url_);
237 entry->set_page_type(PAGE_TYPE_INTERSTITIAL);
239 // Give delegates a chance to set some states on the navigation entry.
240 delegate_->OverrideEntry(entry);
242 controller_->SetTransientEntry(entry);
245 DCHECK(!render_view_host_);
246 render_view_host_ = static_cast<RenderViewHostImpl*>(CreateRenderViewHost());
247 render_view_host_->AttachToFrameTree();
248 CreateWebContentsView();
250 std::string data_url = "data:text/html;charset=utf-8," +
251 net::EscapePath(delegate_->GetHTMLContents());
252 render_view_host_->NavigateToURL(GURL(data_url));
254 notification_registrar_.Add(this, NOTIFICATION_NAV_ENTRY_PENDING,
255 Source<NavigationController>(controller_));
258 void InterstitialPageImpl::Hide() {
259 // We may have already been hidden, and are just waiting to be deleted.
260 // We can't check for enabled() here, because some callers have already
261 // called Disable.
262 if (!render_view_host_)
263 return;
265 Disable();
267 RenderWidgetHostView* old_view =
268 controller_->delegate()->GetRenderViewHost()->GetView();
269 if (controller_->delegate()->GetInterstitialPage() == this &&
270 old_view &&
271 !old_view->IsShowing() &&
272 !controller_->delegate()->IsHidden()) {
273 // Show the original RVH since we're going away. Note it might not exist if
274 // the renderer crashed while the interstitial was showing.
275 // Note that it is important that we don't call Show() if the view is
276 // already showing. That would result in bad things (unparented HWND on
277 // Windows for example) happening.
278 old_view->Show();
281 // If the focus was on the interstitial, let's keep it to the page.
282 // (Note that in unit-tests the RVH may not have a view).
283 if (render_view_host_->GetView() &&
284 render_view_host_->GetView()->HasFocus() &&
285 controller_->delegate()->GetRenderViewHost()->GetView()) {
286 RenderWidgetHostViewPort::FromRWHV(
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 (!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 void InterstitialPageImpl::NavigationEntryCommitted(
356 const LoadCommittedDetails& load_details) {
357 OnNavigatingAwayOrTabClosing();
360 void InterstitialPageImpl::WebContentsDestroyed(WebContents* web_contents) {
361 OnNavigatingAwayOrTabClosing();
364 bool InterstitialPageImpl::OnMessageReceived(RenderFrameHost* render_frame_host,
365 const IPC::Message& message) {
366 return OnMessageReceived(message);
369 bool InterstitialPageImpl::OnMessageReceived(RenderViewHost* render_view_host,
370 const IPC::Message& message) {
371 return OnMessageReceived(message);
374 bool InterstitialPageImpl::OnMessageReceived(const IPC::Message& message) {
376 bool handled = true;
377 bool message_is_ok = true;
378 IPC_BEGIN_MESSAGE_MAP_EX(InterstitialPageImpl, message, message_is_ok)
379 IPC_MESSAGE_HANDLER(FrameHostMsg_DomOperationResponse,
380 OnDomOperationResponse)
381 IPC_MESSAGE_UNHANDLED(handled = false)
382 IPC_END_MESSAGE_MAP_EX()
384 if (!message_is_ok) {
385 RecordAction(base::UserMetricsAction("BadMessageTerminate_RVD"));
386 web_contents()->GetRenderProcessHost()->ReceivedBadMessage();
389 return handled;
392 void InterstitialPageImpl::RenderFrameCreated(
393 RenderFrameHost* render_frame_host) {
394 // Note this is only for subframes in the interstitial, the notification for
395 // the main frame happens in RenderViewCreated.
396 controller_->delegate()->RenderFrameForInterstitialPageCreated(
397 render_frame_host);
400 RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
401 return rvh_delegate_view_.get();
404 const GURL& InterstitialPageImpl::GetURL() const {
405 return url_;
408 void InterstitialPageImpl::RenderViewTerminated(
409 RenderViewHost* render_view_host,
410 base::TerminationStatus status,
411 int error_code) {
412 // Our renderer died. This should not happen in normal cases.
413 // If we haven't already started shutdown, just dismiss the interstitial.
414 // We cannot check for enabled() here, because we may have called Disable
415 // without calling Hide.
416 if (render_view_host_)
417 DontProceed();
420 void InterstitialPageImpl::DidNavigate(
421 RenderViewHost* render_view_host,
422 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {
423 // A fast user could have navigated away from the page that triggered the
424 // interstitial while the interstitial was loading, that would have disabled
425 // us. In that case we can dismiss ourselves.
426 if (!enabled()) {
427 DontProceed();
428 return;
430 if (PageTransitionCoreTypeIs(params.transition,
431 PAGE_TRANSITION_AUTO_SUBFRAME)) {
432 // No need to handle navigate message from iframe in the interstitial page.
433 return;
436 // The RenderViewHost has loaded its contents, we can show it now.
437 if (!controller_->delegate()->IsHidden())
438 render_view_host_->GetView()->Show();
439 controller_->delegate()->AttachInterstitialPage(this);
441 RenderWidgetHostView* rwh_view =
442 controller_->delegate()->GetRenderViewHost()->GetView();
444 // The RenderViewHost may already have crashed before we even get here.
445 if (rwh_view) {
446 // If the page has focus, focus the interstitial.
447 if (rwh_view->HasFocus())
448 Focus();
450 // Hide the original RVH since we're showing the interstitial instead.
451 rwh_view->Hide();
454 // Notify the tab we are not loading so the throbber is stopped. It also
455 // causes a WebContentsObserver::DidStopLoading callback that the
456 // AutomationProvider (used by the UI tests) expects to consider a navigation
457 // as complete. Without this, navigating in a UI test to a URL that triggers
458 // an interstitial would hang.
459 web_contents_was_loading_ = controller_->delegate()->IsLoading();
460 controller_->delegate()->SetIsLoading(
461 controller_->delegate()->GetRenderViewHost(), false, true, NULL);
464 void InterstitialPageImpl::UpdateTitle(
465 RenderViewHost* render_view_host,
466 int32 page_id,
467 const base::string16& title,
468 base::i18n::TextDirection title_direction) {
469 if (!enabled())
470 return;
472 DCHECK(render_view_host == render_view_host_);
473 NavigationEntry* entry = controller_->GetVisibleEntry();
474 if (!entry) {
475 // Crash reports from the field indicate this can be NULL.
476 // This is unexpected as InterstitialPages constructed with the
477 // new_navigation flag set to true create a transient navigation entry
478 // (that is returned as the active entry). And the only case so far of
479 // interstitial created with that flag set to false is with the
480 // SafeBrowsingBlockingPage, when the resource triggering the interstitial
481 // is a sub-resource, meaning the main page has already been loaded and a
482 // navigation entry should have been created.
483 NOTREACHED();
484 return;
487 // If this interstitial is shown on an existing navigation entry, we'll need
488 // to remember its title so we can revert to it when hidden.
489 if (!new_navigation_ && !should_revert_web_contents_title_) {
490 original_web_contents_title_ = entry->GetTitle();
491 should_revert_web_contents_title_ = true;
493 // TODO(evan): make use of title_direction.
494 // http://code.google.com/p/chromium/issues/detail?id=27094
495 entry->SetTitle(title);
496 controller_->delegate()->NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE);
499 RendererPreferences InterstitialPageImpl::GetRendererPrefs(
500 BrowserContext* browser_context) const {
501 delegate_->OverrideRendererPrefs(&renderer_preferences_);
502 return renderer_preferences_;
505 WebPreferences InterstitialPageImpl::GetWebkitPrefs() {
506 if (!enabled())
507 return WebPreferences();
509 return render_view_host_->GetWebkitPrefs(url_);
512 void InterstitialPageImpl::RenderWidgetDeleted(
513 RenderWidgetHostImpl* render_widget_host) {
514 // TODO(creis): Remove this method once we verify the shutdown path is sane.
515 CHECK(!web_contents_);
518 bool InterstitialPageImpl::PreHandleKeyboardEvent(
519 const NativeWebKeyboardEvent& event,
520 bool* is_keyboard_shortcut) {
521 if (!enabled())
522 return false;
523 return render_widget_host_delegate_->PreHandleKeyboardEvent(
524 event, is_keyboard_shortcut);
527 void InterstitialPageImpl::HandleKeyboardEvent(
528 const NativeWebKeyboardEvent& event) {
529 if (enabled())
530 render_widget_host_delegate_->HandleKeyboardEvent(event);
533 #if defined(OS_WIN)
534 gfx::NativeViewAccessible
535 InterstitialPageImpl::GetParentNativeViewAccessible() {
536 return render_widget_host_delegate_->GetParentNativeViewAccessible();
538 #endif
540 WebContents* InterstitialPageImpl::web_contents() const {
541 return web_contents_;
544 RenderViewHost* InterstitialPageImpl::CreateRenderViewHost() {
545 if (!enabled())
546 return NULL;
548 // Interstitial pages don't want to share the session storage so we mint a
549 // new one.
550 BrowserContext* browser_context = web_contents()->GetBrowserContext();
551 scoped_refptr<SiteInstance> site_instance =
552 SiteInstance::Create(browser_context);
553 DOMStorageContextWrapper* dom_storage_context =
554 static_cast<DOMStorageContextWrapper*>(
555 BrowserContext::GetStoragePartition(
556 browser_context, site_instance.get())->GetDOMStorageContext());
557 session_storage_namespace_ =
558 new SessionStorageNamespaceImpl(dom_storage_context);
560 // Use the RenderViewHost from our FrameTree.
561 frame_tree_.root()->render_manager()->Init(
562 browser_context, site_instance.get(), MSG_ROUTING_NONE, MSG_ROUTING_NONE);
563 return frame_tree_.root()->current_frame_host()->render_view_host();
566 WebContentsView* InterstitialPageImpl::CreateWebContentsView() {
567 if (!enabled() || !create_view_)
568 return NULL;
569 WebContentsView* web_contents_view = web_contents()->GetView();
570 WebContentsViewPort* web_contents_view_port =
571 static_cast<WebContentsViewPort*>(web_contents_view);
572 RenderWidgetHostView* view =
573 web_contents_view_port->CreateViewForWidget(render_view_host_);
574 render_view_host_->SetView(view);
575 render_view_host_->AllowBindings(BINDINGS_POLICY_DOM_AUTOMATION);
577 int32 max_page_id = web_contents()->
578 GetMaxPageIDForSiteInstance(render_view_host_->GetSiteInstance());
579 render_view_host_->CreateRenderView(base::string16(),
580 MSG_ROUTING_NONE,
581 max_page_id);
582 controller_->delegate()->RenderFrameForInterstitialPageCreated(
583 frame_tree_.root()->current_frame_host());
584 view->SetSize(web_contents_view->GetContainerSize());
585 // Don't show the interstitial until we have navigated to it.
586 view->Hide();
587 return web_contents_view;
590 void InterstitialPageImpl::Proceed() {
591 // Don't repeat this if we are already shutting down. We cannot check for
592 // enabled() here, because we may have called Disable without calling Hide.
593 if (!render_view_host_)
594 return;
596 if (action_taken_ != NO_ACTION) {
597 NOTREACHED();
598 return;
600 Disable();
601 action_taken_ = PROCEED_ACTION;
603 // Resumes the throbber, if applicable.
604 if (web_contents_was_loading_)
605 controller_->delegate()->SetIsLoading(
606 controller_->delegate()->GetRenderViewHost(), true, true, NULL);
608 // If this is a new navigation, the old page is going away, so we cancel any
609 // blocked requests for it. If it is not a new navigation, then it means the
610 // interstitial was shown as a result of a resource loading in the page.
611 // Since the user wants to proceed, we'll let any blocked request go through.
612 if (new_navigation_)
613 TakeActionOnResourceDispatcher(CANCEL);
614 else
615 TakeActionOnResourceDispatcher(RESUME);
617 // No need to hide if we are a new navigation, we'll get hidden when the
618 // navigation is committed.
619 if (!new_navigation_) {
620 Hide();
621 delegate_->OnProceed();
622 return;
625 delegate_->OnProceed();
628 void InterstitialPageImpl::DontProceed() {
629 // Don't repeat this if we are already shutting down. We cannot check for
630 // enabled() here, because we may have called Disable without calling Hide.
631 if (!render_view_host_)
632 return;
633 DCHECK(action_taken_ != DONT_PROCEED_ACTION);
635 Disable();
636 action_taken_ = DONT_PROCEED_ACTION;
638 // If this is a new navigation, we are returning to the original page, so we
639 // resume blocked requests for it. If it is not a new navigation, then it
640 // means the interstitial was shown as a result of a resource loading in the
641 // page and we won't return to the original page, so we cancel blocked
642 // requests in that case.
643 if (new_navigation_)
644 TakeActionOnResourceDispatcher(RESUME);
645 else
646 TakeActionOnResourceDispatcher(CANCEL);
648 if (should_discard_pending_nav_entry_) {
649 // Since no navigation happens we have to discard the transient entry
650 // explicitely. Note that by calling DiscardNonCommittedEntries() we also
651 // discard the pending entry, which is what we want, since the navigation is
652 // cancelled.
653 controller_->DiscardNonCommittedEntries();
656 if (reload_on_dont_proceed_)
657 controller_->Reload(true);
659 Hide();
660 delegate_->OnDontProceed();
663 void InterstitialPageImpl::CancelForNavigation() {
664 // The user is trying to navigate away. We should unblock the renderer and
665 // disable the interstitial, but keep it visible until the navigation
666 // completes.
667 Disable();
668 // If this interstitial was shown for a new navigation, allow any navigations
669 // on the original page to resume (e.g., subresource requests, XHRs, etc).
670 // Otherwise, cancel the pending, possibly dangerous navigations.
671 if (new_navigation_)
672 TakeActionOnResourceDispatcher(RESUME);
673 else
674 TakeActionOnResourceDispatcher(CANCEL);
677 void InterstitialPageImpl::SetSize(const gfx::Size& size) {
678 if (!enabled())
679 return;
680 #if !defined(OS_MACOSX)
681 // When a tab is closed, we might be resized after our view was NULLed
682 // (typically if there was an info-bar).
683 if (render_view_host_->GetView())
684 render_view_host_->GetView()->SetSize(size);
685 #else
686 // TODO(port): Does Mac need to SetSize?
687 NOTIMPLEMENTED();
688 #endif
691 void InterstitialPageImpl::Focus() {
692 // Focus the native window.
693 if (!enabled())
694 return;
695 RenderWidgetHostViewPort::FromRWHV(render_view_host_->GetView())->Focus();
698 void InterstitialPageImpl::FocusThroughTabTraversal(bool reverse) {
699 if (!enabled())
700 return;
701 render_view_host_->SetInitialFocus(reverse);
704 RenderWidgetHostView* InterstitialPageImpl::GetView() {
705 return render_view_host_->GetView();
708 RenderViewHost* InterstitialPageImpl::GetRenderViewHostForTesting() const {
709 return render_view_host_;
712 #if defined(OS_ANDROID)
713 RenderViewHost* InterstitialPageImpl::GetRenderViewHost() const {
714 return render_view_host_;
716 #endif
718 InterstitialPageDelegate* InterstitialPageImpl::GetDelegateForTesting() {
719 return delegate_.get();
722 void InterstitialPageImpl::DontCreateViewForTesting() {
723 create_view_ = false;
726 gfx::Rect InterstitialPageImpl::GetRootWindowResizerRect() const {
727 return gfx::Rect();
730 void InterstitialPageImpl::CreateNewWindow(
731 int render_process_id,
732 int route_id,
733 int main_frame_route_id,
734 const ViewHostMsg_CreateWindow_Params& params,
735 SessionStorageNamespace* session_storage_namespace) {
736 NOTREACHED() << "InterstitialPage does not support showing popups yet.";
739 void InterstitialPageImpl::CreateNewWidget(int render_process_id,
740 int route_id,
741 blink::WebPopupType popup_type) {
742 NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
745 void InterstitialPageImpl::CreateNewFullscreenWidget(int render_process_id,
746 int route_id) {
747 NOTREACHED()
748 << "InterstitialPage does not support showing full screen popups.";
751 void InterstitialPageImpl::ShowCreatedWindow(int route_id,
752 WindowOpenDisposition disposition,
753 const gfx::Rect& initial_pos,
754 bool user_gesture) {
755 NOTREACHED() << "InterstitialPage does not support showing popups yet.";
758 void InterstitialPageImpl::ShowCreatedWidget(int route_id,
759 const gfx::Rect& initial_pos) {
760 NOTREACHED() << "InterstitialPage does not support showing drop-downs yet.";
763 void InterstitialPageImpl::ShowCreatedFullscreenWidget(int route_id) {
764 NOTREACHED()
765 << "InterstitialPage does not support showing full screen popups.";
768 SessionStorageNamespace* InterstitialPageImpl::GetSessionStorageNamespace(
769 SiteInstance* instance) {
770 return session_storage_namespace_.get();
773 FrameTree* InterstitialPageImpl::GetFrameTree() {
774 return &frame_tree_;
777 void InterstitialPageImpl::Disable() {
778 enabled_ = false;
781 void InterstitialPageImpl::Shutdown() {
782 delete this;
785 void InterstitialPageImpl::OnNavigatingAwayOrTabClosing() {
786 if (action_taken_ == NO_ACTION) {
787 // We are navigating away from the interstitial or closing a tab with an
788 // interstitial. Default to DontProceed(). We don't just call Hide as
789 // subclasses will almost certainly override DontProceed to do some work
790 // (ex: close pending connections).
791 DontProceed();
792 } else {
793 // User decided to proceed and either the navigation was committed or
794 // the tab was closed before that.
795 Hide();
799 void InterstitialPageImpl::TakeActionOnResourceDispatcher(
800 ResourceRequestAction action) {
801 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)) <<
802 "TakeActionOnResourceDispatcher should be called on the main thread.";
804 if (action == CANCEL || action == RESUME) {
805 if (resource_dispatcher_host_notified_)
806 return;
807 resource_dispatcher_host_notified_ = true;
810 // The tab might not have a render_view_host if it was closed (in which case,
811 // we have taken care of the blocked requests when processing
812 // NOTIFY_RENDER_WIDGET_HOST_DESTROYED.
813 // Also we need to test there is a ResourceDispatcherHostImpl, as when unit-
814 // tests we don't have one.
815 RenderViewHostImpl* rvh = RenderViewHostImpl::FromID(original_child_id_,
816 original_rvh_id_);
817 if (!rvh || !ResourceDispatcherHostImpl::Get())
818 return;
820 BrowserThread::PostTask(
821 BrowserThread::IO,
822 FROM_HERE,
823 base::Bind(
824 &ResourceRequestHelper,
825 ResourceDispatcherHostImpl::Get(),
826 original_child_id_,
827 original_rvh_id_,
828 action));
831 void InterstitialPageImpl::OnDomOperationResponse(
832 const std::string& json_string,
833 int automation_id) {
834 // Needed by test code.
835 DomOperationNotificationDetails details(json_string, automation_id);
836 NotificationService::current()->Notify(
837 NOTIFICATION_DOM_OPERATION_RESPONSE,
838 Source<WebContents>(web_contents()),
839 Details<DomOperationNotificationDetails>(&details));
841 if (!enabled())
842 return;
843 delegate_->CommandReceived(details.json);
847 InterstitialPageImpl::InterstitialPageRVHDelegateView::
848 InterstitialPageRVHDelegateView(InterstitialPageImpl* page)
849 : interstitial_page_(page) {
852 #if defined(OS_MACOSX) || defined(OS_ANDROID)
853 void InterstitialPageImpl::InterstitialPageRVHDelegateView::ShowPopupMenu(
854 const gfx::Rect& bounds,
855 int item_height,
856 double item_font_size,
857 int selected_item,
858 const std::vector<MenuItem>& items,
859 bool right_aligned,
860 bool allow_multiple_selection) {
861 NOTREACHED() << "InterstitialPage does not support showing popup menus.";
864 void InterstitialPageImpl::InterstitialPageRVHDelegateView::HidePopupMenu() {
865 NOTREACHED() << "InterstitialPage does not support showing popup menus.";
867 #endif
869 void InterstitialPageImpl::InterstitialPageRVHDelegateView::StartDragging(
870 const DropData& drop_data,
871 WebDragOperationsMask allowed_operations,
872 const gfx::ImageSkia& image,
873 const gfx::Vector2d& image_offset,
874 const DragEventSourceInfo& event_info) {
875 NOTREACHED() << "InterstitialPage does not support dragging yet.";
878 void InterstitialPageImpl::InterstitialPageRVHDelegateView::UpdateDragCursor(
879 WebDragOperation) {
880 NOTREACHED() << "InterstitialPage does not support dragging yet.";
883 void InterstitialPageImpl::InterstitialPageRVHDelegateView::GotFocus() {
884 WebContents* web_contents = interstitial_page_->web_contents();
885 if (web_contents && web_contents->GetDelegate())
886 web_contents->GetDelegate()->WebContentsFocused(web_contents);
889 void InterstitialPageImpl::InterstitialPageRVHDelegateView::TakeFocus(
890 bool reverse) {
891 if (!interstitial_page_->web_contents())
892 return;
893 WebContentsImpl* web_contents =
894 static_cast<WebContentsImpl*>(interstitial_page_->web_contents());
895 if (!web_contents->GetDelegateView())
896 return;
898 web_contents->GetDelegateView()->TakeFocus(reverse);
901 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply(
902 int request_id, int number_of_matches, const gfx::Rect& selection_rect,
903 int active_match_ordinal, bool final_update) {
906 } // namespace content