Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: content/renderer/render_view.cc

Issue 6319001: Support window.opener after a process swap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unload; chrome dependency in RenderWidget. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/renderer/render_view.h" 5 #include "content/renderer/render_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 IPC_MESSAGE_HANDLER(ViewMsg_ScrollFocusedEditableNodeIntoView, 625 IPC_MESSAGE_HANDLER(ViewMsg_ScrollFocusedEditableNodeIntoView,
626 OnScrollFocusedEditableNodeIntoView) 626 OnScrollFocusedEditableNodeIntoView)
627 IPC_MESSAGE_HANDLER(ViewMsg_UpdateTargetURL_ACK, OnUpdateTargetURLAck) 627 IPC_MESSAGE_HANDLER(ViewMsg_UpdateTargetURL_ACK, OnUpdateTargetURLAck)
628 IPC_MESSAGE_HANDLER(ViewMsg_UpdateWebPreferences, OnUpdateWebPreferences) 628 IPC_MESSAGE_HANDLER(ViewMsg_UpdateWebPreferences, OnUpdateWebPreferences)
629 IPC_MESSAGE_HANDLER(ViewMsg_SetAltErrorPageURL, OnSetAltErrorPageURL) 629 IPC_MESSAGE_HANDLER(ViewMsg_SetAltErrorPageURL, OnSetAltErrorPageURL)
630 IPC_MESSAGE_HANDLER(ViewMsg_InstallMissingPlugin, OnInstallMissingPlugin) 630 IPC_MESSAGE_HANDLER(ViewMsg_InstallMissingPlugin, OnInstallMissingPlugin)
631 IPC_MESSAGE_HANDLER(ViewMsg_EnumerateDirectoryResponse, 631 IPC_MESSAGE_HANDLER(ViewMsg_EnumerateDirectoryResponse,
632 OnEnumerateDirectoryResponse) 632 OnEnumerateDirectoryResponse)
633 IPC_MESSAGE_HANDLER(ViewMsg_RunFileChooserResponse, OnFileChooserResponse) 633 IPC_MESSAGE_HANDLER(ViewMsg_RunFileChooserResponse, OnFileChooserResponse)
634 IPC_MESSAGE_HANDLER(ViewMsg_ShouldClose, OnShouldClose) 634 IPC_MESSAGE_HANDLER(ViewMsg_ShouldClose, OnShouldClose)
635 IPC_MESSAGE_HANDLER(ViewMsg_SwapOut, OnSwapOut)
635 IPC_MESSAGE_HANDLER(ViewMsg_ClosePage, OnClosePage) 636 IPC_MESSAGE_HANDLER(ViewMsg_ClosePage, OnClosePage)
636 IPC_MESSAGE_HANDLER(ViewMsg_ThemeChanged, OnThemeChanged) 637 IPC_MESSAGE_HANDLER(ViewMsg_ThemeChanged, OnThemeChanged)
637 IPC_MESSAGE_HANDLER(ViewMsg_DisassociateFromPopupCount, 638 IPC_MESSAGE_HANDLER(ViewMsg_DisassociateFromPopupCount,
638 OnDisassociateFromPopupCount) 639 OnDisassociateFromPopupCount)
639 IPC_MESSAGE_HANDLER(ViewMsg_MoveOrResizeStarted, OnMoveOrResizeStarted) 640 IPC_MESSAGE_HANDLER(ViewMsg_MoveOrResizeStarted, OnMoveOrResizeStarted)
640 IPC_MESSAGE_HANDLER(ViewMsg_ClearFocusedNode, OnClearFocusedNode) 641 IPC_MESSAGE_HANDLER(ViewMsg_ClearFocusedNode, OnClearFocusedNode)
641 IPC_MESSAGE_HANDLER(ViewMsg_SetBackground, OnSetBackground) 642 IPC_MESSAGE_HANDLER(ViewMsg_SetBackground, OnSetBackground)
642 IPC_MESSAGE_HANDLER(ViewMsg_EnablePreferredSizeChangedMode, 643 IPC_MESSAGE_HANDLER(ViewMsg_EnablePreferredSizeChangedMode,
643 OnEnablePreferredSizeChangedMode) 644 OnEnablePreferredSizeChangedMode)
644 IPC_MESSAGE_HANDLER(ViewMsg_DisableScrollbarsForSmallWindows, 645 IPC_MESSAGE_HANDLER(ViewMsg_DisableScrollbarsForSmallWindows,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 // Have the super handle all other messages. 679 // Have the super handle all other messages.
679 IPC_MESSAGE_UNHANDLED(handled = RenderWidget::OnMessageReceived(message)) 680 IPC_MESSAGE_UNHANDLED(handled = RenderWidget::OnMessageReceived(message))
680 IPC_END_MESSAGE_MAP() 681 IPC_END_MESSAGE_MAP()
681 return handled; 682 return handled;
682 } 683 }
683 684
684 void RenderView::OnNavigate(const ViewMsg_Navigate_Params& params) { 685 void RenderView::OnNavigate(const ViewMsg_Navigate_Params& params) {
685 if (!webview()) 686 if (!webview())
686 return; 687 return;
687 688
689 // Swap this renderer back in if necessary.
690 if (is_swapped_out_) {
691 SetSwappedOut(false);
692 }
693
688 history_list_offset_ = params.current_history_list_offset; 694 history_list_offset_ = params.current_history_list_offset;
689 history_list_length_ = params.current_history_list_length; 695 history_list_length_ = params.current_history_list_length;
690 696
691 content::GetContentClient()->SetActiveURL(params.url); 697 content::GetContentClient()->SetActiveURL(params.url);
692 698
693 bool is_reload = 699 bool is_reload =
694 params.navigation_type == ViewMsg_Navigate_Type::RELOAD || 700 params.navigation_type == ViewMsg_Navigate_Type::RELOAD ||
695 params.navigation_type == ViewMsg_Navigate_Type::RELOAD_IGNORING_CACHE; 701 params.navigation_type == ViewMsg_Navigate_Type::RELOAD_IGNORING_CACHE;
696 702
697 WebFrame* main_frame = webview()->mainFrame(); 703 WebFrame* main_frame = webview()->mainFrame();
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
1477 pending_accessibility_notifications_[i].type, &param.notification_type); 1483 pending_accessibility_notifications_[i].type, &param.notification_type);
1478 param.acc_obj = WebAccessibility( 1484 param.acc_obj = WebAccessibility(
1479 obj, accessibility_.get(), notification.ShouldIncludeChildren()); 1485 obj, accessibility_.get(), notification.ShouldIncludeChildren());
1480 notifications.push_back(param); 1486 notifications.push_back(param);
1481 } 1487 }
1482 pending_accessibility_notifications_.clear(); 1488 pending_accessibility_notifications_.clear();
1483 Send(new ViewHostMsg_AccessibilityNotifications(routing_id_, notifications)); 1489 Send(new ViewHostMsg_AccessibilityNotifications(routing_id_, notifications));
1484 accessibility_ack_pending_ = true; 1490 accessibility_ack_pending_ = true;
1485 } 1491 }
1486 1492
1493 bool RenderView::CanSendWhileSwappedOut(IPC::Message* message) {
1494 // We filter out most IPC messages when swapped out. However, some are
1495 // important (e.g., ACKs) for keeping the browser and renderer state
1496 // consistent in case we later return to this renderer.
1497 switch (message->type()) {
1498 // RenderView
1499 case ViewHostMsg_RenderViewGone::ID:
1500 case ViewHostMsg_ShouldClose_ACK::ID:
1501 case ViewHostMsg_SwapOut_ACK::ID:
1502 case ViewHostMsg_ClosePage_ACK::ID:
1503 return true;
1504 default:
1505 break;
1506 }
1507
1508 // Check with our observers, in case they need to let messages through.
1509 ObserverListBase<RenderViewObserver>::Iterator it(observers_);
1510 RenderViewObserver* observer;
1511 while ((observer = it.GetNext()) != NULL)
1512 if (observer->CanSendWhileSwappedOut(message))
1513 return true;
1514
1515 return RenderWidget::CanSendWhileSwappedOut(message);
1516 }
1517
1487 bool RenderView::handleCurrentKeyboardEvent() { 1518 bool RenderView::handleCurrentKeyboardEvent() {
1488 if (edit_commands_.empty()) 1519 if (edit_commands_.empty())
1489 return false; 1520 return false;
1490 1521
1491 WebFrame* frame = webview()->focusedFrame(); 1522 WebFrame* frame = webview()->focusedFrame();
1492 if (!frame) 1523 if (!frame)
1493 return false; 1524 return false;
1494 1525
1495 EditCommands::iterator it = edit_commands_.begin(); 1526 EditCommands::iterator it = edit_commands_.begin();
1496 EditCommands::iterator end = edit_commands_.end(); 1527 EditCommands::iterator end = edit_commands_.end();
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 UTF16ToWideHack(default_value), 1588 UTF16ToWideHack(default_value),
1558 frame->url(), 1589 frame->url(),
1559 &result); 1590 &result);
1560 if (ok) 1591 if (ok)
1561 actual_value->assign(WideToUTF16Hack(result)); 1592 actual_value->assign(WideToUTF16Hack(result));
1562 return ok; 1593 return ok;
1563 } 1594 }
1564 1595
1565 bool RenderView::runModalBeforeUnloadDialog( 1596 bool RenderView::runModalBeforeUnloadDialog(
1566 WebFrame* frame, const WebString& message) { 1597 WebFrame* frame, const WebString& message) {
1598 // If we are swapping out, we have already run the beforeunload handler.
1599 // TODO(creis): Fix OnSwapOut to clear the frame without running beforeunload
1600 // at all, to avoid running it twice.
1601 if (is_swapped_out_)
1602 return true;
1603
1567 bool success = false; 1604 bool success = false;
1568 // This is an ignored return value, but is included so we can accept the same 1605 // This is an ignored return value, but is included so we can accept the same
1569 // response as RunJavaScriptMessage. 1606 // response as RunJavaScriptMessage.
1570 std::wstring ignored_result; 1607 std::wstring ignored_result;
1571 SendAndRunNestedMessageLoop(new ViewHostMsg_RunBeforeUnloadConfirm( 1608 SendAndRunNestedMessageLoop(new ViewHostMsg_RunBeforeUnloadConfirm(
1572 routing_id_, frame->url(), UTF16ToWideHack(message), &success, 1609 routing_id_, frame->url(), UTF16ToWideHack(message), &success,
1573 &ignored_result)); 1610 &ignored_result));
1574 return success; 1611 return success;
1575 } 1612 }
1576 1613
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
1919 if (policy == WebKit::WebNavigationPolicyDownload) { 1956 if (policy == WebKit::WebNavigationPolicyDownload) {
1920 Send(new ViewHostMsg_DownloadUrl(routing_id_, request.url(), referrer)); 1957 Send(new ViewHostMsg_DownloadUrl(routing_id_, request.url(), referrer));
1921 } else { 1958 } else {
1922 OpenURL(request.url(), referrer, policy); 1959 OpenURL(request.url(), referrer, policy);
1923 } 1960 }
1924 } 1961 }
1925 1962
1926 WebNavigationPolicy RenderView::decidePolicyForNavigation( 1963 WebNavigationPolicy RenderView::decidePolicyForNavigation(
1927 WebFrame* frame, const WebURLRequest& request, WebNavigationType type, 1964 WebFrame* frame, const WebURLRequest& request, WebNavigationType type,
1928 const WebNode&, WebNavigationPolicy default_policy, bool is_redirect) { 1965 const WebNode&, WebNavigationPolicy default_policy, bool is_redirect) {
1966 // TODO(creis): Remove this when we fix OnSwapOut to not need a navigation.
1967 if (is_swapped_out_) {
1968 DCHECK(request.url() == GURL("about:swappedout"));
1969 return default_policy;
1970 }
1971
1929 // Webkit is asking whether to navigate to a new URL. 1972 // Webkit is asking whether to navigate to a new URL.
1930 // This is fine normally, except if we're showing UI from one security 1973 // This is fine normally, except if we're showing UI from one security
1931 // context and they're trying to navigate to a different context. 1974 // context and they're trying to navigate to a different context.
1932 const GURL& url = request.url(); 1975 const GURL& url = request.url();
1933 1976
1934 // A content initiated navigation may have originated from a link-click, 1977 // A content initiated navigation may have originated from a link-click,
1935 // script, drag-n-drop operation, etc. 1978 // script, drag-n-drop operation, etc.
1936 bool is_content_initiated = 1979 bool is_content_initiated =
1937 NavigationState::FromDataSource(frame->provisionalDataSource())-> 1980 NavigationState::FromDataSource(frame->provisionalDataSource())->
1938 is_content_initiated(); 1981 is_content_initiated();
(...skipping 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after
3503 DCHECK(accessibility_ack_pending_); 3546 DCHECK(accessibility_ack_pending_);
3504 accessibility_ack_pending_ = false; 3547 accessibility_ack_pending_ = false;
3505 SendPendingAccessibilityNotifications(); 3548 SendPendingAccessibilityNotifications();
3506 } 3549 }
3507 3550
3508 void RenderView::OnShouldClose() { 3551 void RenderView::OnShouldClose() {
3509 bool should_close = webview()->dispatchBeforeUnloadEvent(); 3552 bool should_close = webview()->dispatchBeforeUnloadEvent();
3510 Send(new ViewHostMsg_ShouldClose_ACK(routing_id_, should_close)); 3553 Send(new ViewHostMsg_ShouldClose_ACK(routing_id_, should_close));
3511 } 3554 }
3512 3555
3513 void RenderView::OnClosePage(const ViewMsg_ClosePage_Params& params) { 3556 void RenderView::OnSwapOut(const ViewMsg_SwapOut_Params& params) {
3557 if (is_swapped_out_)
3558 return;
3559
3560 // Swap this RenderView out so the tab can navigate to a page rendered by a
3561 // different process. This involves running the unload handler and clearing
3562 // the page. Once WasSwappedOut is called, we also allow this process to exit
3563 // if there are no other active RenderViews in it.
3564
3565 // Send an UpdateState message before we get swapped out.
3566 SyncNavigationState();
3567
3568 // Synchronously run the unload handler before sending the ACK.
3569 webview()->dispatchUnloadEvent();
3570
3571 // Swap out and stop sending any IPC messages that are not ACKs.
3572 SetSwappedOut(true);
3573
3574 // Replace the page with a blank dummy URL. The unload handler will not be
3575 // run a second time, thanks to a check in FrameLoader::stopLoading.
3576 // TODO(creis): Need to add a better way to do this that avoids running the
3577 // beforeunload handler. For now, we just run it a second time silently.
3578 webview()->mainFrame()->loadHTMLString(std::string(),
3579 GURL("about:swappedout"),
3580 GURL("about:swappedout"),
3581 false);
3582
3583 // Just echo back the params in the ACK.
3584 Send(new ViewHostMsg_SwapOut_ACK(routing_id_, params));
3585 }
3586
3587 void RenderView::OnClosePage() {
3514 // TODO(creis): We'd rather use webview()->Close() here, but that currently 3588 // TODO(creis): We'd rather use webview()->Close() here, but that currently
3515 // sets the WebView's delegate_ to NULL, preventing any JavaScript dialogs 3589 // sets the WebView's delegate_ to NULL, preventing any JavaScript dialogs
3516 // in the onunload handler from appearing. For now, we're bypassing that and 3590 // in the onunload handler from appearing. For now, we're bypassing that and
3517 // calling the FrameLoader's CloseURL method directly. This should be 3591 // calling the FrameLoader's CloseURL method directly. This should be
3518 // revisited to avoid having two ways to close a page. Having a single way 3592 // revisited to avoid having two ways to close a page. Having a single way
3519 // to close that can run onunload is also useful for fixing 3593 // to close that can run onunload is also useful for fixing
3520 // http://b/issue?id=753080. 3594 // http://b/issue?id=753080.
3521 webview()->dispatchUnloadEvent(); 3595 webview()->dispatchUnloadEvent();
3522 3596
3523 // Just echo back the params in the ACK. 3597 Send(new ViewHostMsg_ClosePage_ACK(routing_id_));
3524 Send(new ViewHostMsg_ClosePage_ACK(routing_id_, params));
3525 } 3598 }
3526 3599
3527 void RenderView::OnThemeChanged() { 3600 void RenderView::OnThemeChanged() {
3528 #if defined(OS_WIN) 3601 #if defined(OS_WIN)
3529 gfx::NativeThemeWin::instance()->CloseHandles(); 3602 gfx::NativeThemeWin::instance()->CloseHandles();
3530 if (webview()) 3603 if (webview())
3531 webview()->themeChanged(); 3604 webview()->themeChanged();
3532 #else // defined(OS_WIN) 3605 #else // defined(OS_WIN)
3533 // TODO(port): we don't support theming on non-Windows platforms yet 3606 // TODO(port): we don't support theming on non-Windows platforms yet
3534 NOTIMPLEMENTED(); 3607 NOTIMPLEMENTED();
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
4103 const webkit_glue::CustomContextMenuContext& custom_context) { 4176 const webkit_glue::CustomContextMenuContext& custom_context) {
4104 if (custom_context.is_pepper_menu) 4177 if (custom_context.is_pepper_menu)
4105 pepper_delegate_.OnContextMenuClosed(custom_context); 4178 pepper_delegate_.OnContextMenuClosed(custom_context);
4106 else 4179 else
4107 context_menu_node_.reset(); 4180 context_menu_node_.reset();
4108 } 4181 }
4109 4182
4110 void RenderView::OnNetworkStateChanged(bool online) { 4183 void RenderView::OnNetworkStateChanged(bool online) {
4111 WebNetworkStateNotifier::setOnLine(online); 4184 WebNetworkStateNotifier::setOnLine(online);
4112 } 4185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698