// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/web_contents/web_contents_impl.h" #include #include "base/command_line.h" #include "base/debug/trace_event.h" #include "base/lazy_instance.h" #include "base/logging.h" #include "base/metrics/histogram.h" #include "base/metrics/stats_counters.h" #include "base/process/process.h" #include "base/strings/string16.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/time/time.h" #include "content/browser/accessibility/accessibility_mode_helper.h" #include "content/browser/accessibility/browser_accessibility_state_impl.h" #include "content/browser/browser_plugin/browser_plugin_embedder.h" #include "content/browser/browser_plugin/browser_plugin_guest.h" #include "content/browser/child_process_security_policy_impl.h" #include "content/browser/devtools/devtools_manager.h" #include "content/browser/dom_storage/dom_storage_context_wrapper.h" #include "content/browser/dom_storage/session_storage_namespace_impl.h" #include "content/browser/download/download_stats.h" #include "content/browser/download/mhtml_generation_manager.h" #include "content/browser/download/save_package.h" #include "content/browser/frame_host/cross_process_frame_connector.h" #include "content/browser/frame_host/interstitial_page_impl.h" #include "content/browser/frame_host/navigation_entry_impl.h" #include "content/browser/frame_host/navigator_impl.h" #include "content/browser/frame_host/render_frame_host_impl.h" #include "content/browser/frame_host/render_widget_host_view_child_frame.h" #include "content/browser/geolocation/geolocation_dispatcher_host.h" #include "content/browser/host_zoom_map_impl.h" #include "content/browser/loader/resource_dispatcher_host_impl.h" #include "content/browser/manifest/manifest_manager_host.h" #include "content/browser/media/audio_stream_monitor.h" #include "content/browser/media/capture/web_contents_audio_muter.h" #include "content/browser/media/midi_dispatcher_host.h" #include "content/browser/message_port_message_filter.h" #include "content/browser/message_port_service.h" #include "content/browser/power_save_blocker_impl.h" #include "content/browser/renderer_host/render_process_host_impl.h" #include "content/browser/renderer_host/render_view_host_delegate_view.h" #include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_base.h" #include "content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h" #include "content/browser/site_instance_impl.h" #include "content/browser/web_contents/web_contents_view_guest.h" #include "content/browser/webui/generic_handler.h" #include "content/browser/webui/web_ui_controller_factory_registry.h" #include "content/browser/webui/web_ui_impl.h" #include "content/common/browser_plugin/browser_plugin_constants.h" #include "content/common/browser_plugin/browser_plugin_messages.h" #include "content/common/frame_messages.h" #include "content/common/image_messages.h" #include "content/common/input_messages.h" #include "content/common/ssl_status_serialization.h" #include "content/common/view_messages.h" #include "content/public/browser/ax_event_notification_details.h" #include "content/public/browser/browser_context.h" #include "content/public/browser/browser_plugin_guest_manager.h" #include "content/public/browser/content_browser_client.h" #include "content/public/browser/devtools_agent_host.h" #include "content/public/browser/download_manager.h" #include "content/public/browser/download_url_parameters.h" #include "content/public/browser/invalidate_type.h" #include "content/public/browser/javascript_dialog_manager.h" #include "content/public/browser/load_from_memory_cache_details.h" #include "content/public/browser/load_notification_details.h" #include "content/public/browser/navigation_details.h" #include "content/public/browser/notification_details.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/render_widget_host_iterator.h" #include "content/public/browser/resource_request_details.h" #include "content/public/browser/screen_orientation_dispatcher_host.h" #include "content/public/browser/storage_partition.h" #include "content/public/browser/user_metrics.h" #include "content/public/browser/web_contents_delegate.h" #include "content/public/browser/web_contents_observer.h" #include "content/public/common/bindings_policy.h" #include "content/public/common/content_constants.h" #include "content/public/common/content_switches.h" #include "content/public/common/page_zoom.h" #include "content/public/common/result_codes.h" #include "content/public/common/url_constants.h" #include "content/public/common/url_utils.h" #include "content/public/common/web_preferences.h" #include "net/base/mime_util.h" #include "net/base/net_util.h" #include "net/http/http_cache.h" #include "net/http/http_transaction_factory.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_context_getter.h" #include "ui/base/layout.h" #include "ui/gfx/display.h" #include "ui/gfx/screen.h" #include "ui/gl/gl_switches.h" #if defined(OS_ANDROID) #include "content/browser/android/content_view_core_impl.h" #include "content/browser/android/date_time_chooser_android.h" #include "content/browser/media/android/browser_media_player_manager.h" #include "content/browser/web_contents/web_contents_android.h" #include "content/public/browser/android/content_view_core.h" #endif #if defined(OS_MACOSX) #include "base/mac/foundation_util.h" #endif namespace content { namespace { const int kMinimumDelayBetweenLoadingUpdatesMS = 100; // This matches what Blink's ProgressTracker has traditionally used for a // minimum progress value. const double kMinimumLoadingProgress = 0.1; const char kDotGoogleDotCom[] = ".google.com"; #if defined(OS_ANDROID) const char kWebContentsAndroidKey[] = "web_contents_android"; #endif // OS_ANDROID base::LazyInstance > g_created_callbacks = LAZY_INSTANCE_INITIALIZER; static int StartDownload(RenderFrameHost* rfh, const GURL& url, bool is_favicon, uint32_t max_bitmap_size) { static int g_next_image_download_id = 0; rfh->Send(new ImageMsg_DownloadImage(rfh->GetRoutingID(), ++g_next_image_download_id, url, is_favicon, max_bitmap_size)); return g_next_image_download_id; } void NotifyCacheOnIO( scoped_refptr request_context, const GURL& url, const std::string& http_method) { request_context->GetURLRequestContext()->http_transaction_factory()-> GetCache()->OnExternalCacheHit(url, http_method); } // Helper function for retrieving all the sites in a frame tree. bool CollectSites(BrowserContext* context, std::set* sites, FrameTreeNode* node) { sites->insert(SiteInstance::GetSiteForURL(context, node->current_url())); return true; } bool ForEachFrameInternal( const base::Callback& on_frame, FrameTreeNode* node) { on_frame.Run(node->current_frame_host()); return true; } bool ForEachPendingFrameInternal( const base::Callback& on_frame, FrameTreeNode* node) { RenderFrameHost* pending_frame_host = node->render_manager()->pending_frame_host(); if (pending_frame_host) on_frame.Run(pending_frame_host); return true; } void SendToAllFramesInternal(IPC::Message* message, RenderFrameHost* rfh) { IPC::Message* message_copy = new IPC::Message(*message); message_copy->set_routing_id(rfh->GetRoutingID()); rfh->Send(message_copy); } void AddRenderWidgetHostViewToSet(std::set* set, RenderFrameHost* rfh) { RenderWidgetHostView* rwhv = static_cast(rfh) ->frame_tree_node() ->render_manager() ->GetRenderWidgetHostView(); set->insert(rwhv); } void SetAccessibilityModeOnFrame(AccessibilityMode mode, RenderFrameHost* frame_host) { static_cast(frame_host)->SetAccessibilityMode(mode); } } // namespace WebContents* WebContents::Create(const WebContents::CreateParams& params) { return WebContentsImpl::CreateWithOpener( params, static_cast(params.opener)); } WebContents* WebContents::CreateWithSessionStorage( const WebContents::CreateParams& params, const SessionStorageNamespaceMap& session_storage_namespace_map) { WebContentsImpl* new_contents = new WebContentsImpl( params.browser_context, NULL); for (SessionStorageNamespaceMap::const_iterator it = session_storage_namespace_map.begin(); it != session_storage_namespace_map.end(); ++it) { new_contents->GetController() .SetSessionStorageNamespace(it->first, it->second.get()); } new_contents->Init(params); return new_contents; } void WebContentsImpl::AddCreatedCallback(const CreatedCallback& callback) { g_created_callbacks.Get().push_back(callback); } void WebContentsImpl::RemoveCreatedCallback(const CreatedCallback& callback) { for (size_t i = 0; i < g_created_callbacks.Get().size(); ++i) { if (g_created_callbacks.Get().at(i).Equals(callback)) { g_created_callbacks.Get().erase(g_created_callbacks.Get().begin() + i); return; } } } WebContents* WebContents::FromRenderViewHost(const RenderViewHost* rvh) { return rvh->GetDelegate()->GetAsWebContents(); } WebContents* WebContents::FromRenderFrameHost(RenderFrameHost* rfh) { RenderFrameHostImpl* rfh_impl = static_cast(rfh); if (!rfh_impl) return NULL; return rfh_impl->delegate()->GetAsWebContents(); } // WebContentsImpl::DestructionObserver ---------------------------------------- class WebContentsImpl::DestructionObserver : public WebContentsObserver { public: DestructionObserver(WebContentsImpl* owner, WebContents* watched_contents) : WebContentsObserver(watched_contents), owner_(owner) { } // WebContentsObserver: void WebContentsDestroyed() override { owner_->OnWebContentsDestroyed( static_cast(web_contents())); } private: WebContentsImpl* owner_; DISALLOW_COPY_AND_ASSIGN(DestructionObserver); }; WebContentsImpl::ColorChooserInfo::ColorChooserInfo(int render_process_id, int render_frame_id, ColorChooser* chooser, int identifier) : render_process_id(render_process_id), render_frame_id(render_frame_id), chooser(chooser), identifier(identifier) { } WebContentsImpl::ColorChooserInfo::~ColorChooserInfo() { } // WebContentsImpl ------------------------------------------------------------- WebContentsImpl::WebContentsImpl( BrowserContext* browser_context, WebContentsImpl* opener) : delegate_(NULL), controller_(this, browser_context), render_view_host_delegate_view_(NULL), opener_(opener), created_with_opener_(!!opener), #if defined(OS_WIN) accessible_parent_(NULL), #endif frame_tree_(new NavigatorImpl(&controller_, this), this, this, this, this), is_loading_(false), is_load_to_different_document_(false), crashed_status_(base::TERMINATION_STATUS_STILL_RUNNING), crashed_error_code_(0), waiting_for_response_(false), load_state_(net::LOAD_STATE_IDLE, base::string16()), loading_total_progress_(0.0), loading_frames_in_progress_(0), upload_size_(0), upload_position_(0), displayed_insecure_content_(false), has_accessed_initial_document_(false), capturer_count_(0), should_normally_be_visible_(true), is_being_destroyed_(false), notify_disconnection_(false), dialog_manager_(NULL), is_showing_before_unload_dialog_(false), last_active_time_(base::TimeTicks::Now()), closed_by_user_gesture_(false), minimum_zoom_percent_(static_cast(kMinimumZoomFactor * 100)), maximum_zoom_percent_(static_cast(kMaximumZoomFactor * 100)), totalPinchGestureAmount_(0), currentPinchZoomStepDelta_(0), render_view_message_source_(NULL), fullscreen_widget_routing_id_(MSG_ROUTING_NONE), fullscreen_widget_had_focus_at_shutdown_(false), is_subframe_(false), force_disable_overscroll_content_(false), last_dialog_suppressed_(false), accessibility_mode_( BrowserAccessibilityStateImpl::GetInstance()->accessibility_mode()), audio_stream_monitor_(this), loading_weak_factory_(this) { for (size_t i = 0; i < g_created_callbacks.Get().size(); i++) g_created_callbacks.Get().at(i).Run(this); frame_tree_.SetFrameRemoveListener( base::Bind(&WebContentsImpl::OnFrameRemoved, base::Unretained(this))); } WebContentsImpl::~WebContentsImpl() { is_being_destroyed_ = true; // Delete all RFH pending shutdown, which will lead the corresponding RVH to // shutdown and be deleted as well. frame_tree_.ForEach( base::Bind(&RenderFrameHostManager::ClearRFHsPendingShutdown)); ClearAllPowerSaveBlockers(); for (std::set::iterator iter = created_widgets_.begin(); iter != created_widgets_.end(); ++iter) { (*iter)->DetachDelegate(); } created_widgets_.clear(); // Clear out any JavaScript state. if (dialog_manager_) dialog_manager_->WebContentsDestroyed(this); if (color_chooser_info_.get()) color_chooser_info_->chooser->End(); NotifyDisconnected(); // Notify any observer that have a reference on this WebContents. NotificationService::current()->Notify( NOTIFICATION_WEB_CONTENTS_DESTROYED, Source(this), NotificationService::NoDetails()); // Destroy all frame tree nodes except for the root; this notifies observers. frame_tree_.ResetForMainFrameSwap(); GetRenderManager()->ResetProxyHosts(); // Manually call the observer methods for the root frame tree node. RenderFrameHostManager* root = GetRenderManager(); if (root->pending_frame_host()) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameDeleted(root->pending_frame_host())); } FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameDeleted(root->current_frame_host())); if (root->pending_render_view_host()) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderViewDeleted(root->pending_render_view_host())); } FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderViewDeleted(root->current_host())); FOR_EACH_OBSERVER(WebContentsObserver, observers_, WebContentsDestroyed()); FOR_EACH_OBSERVER(WebContentsObserver, observers_, ResetWebContents()); SetDelegate(NULL); STLDeleteContainerPairSecondPointers(destruction_observers_.begin(), destruction_observers_.end()); } WebContentsImpl* WebContentsImpl::CreateWithOpener( const WebContents::CreateParams& params, WebContentsImpl* opener) { TRACE_EVENT0("browser", "WebContentsImpl::CreateWithOpener"); WebContentsImpl* new_contents = new WebContentsImpl( params.browser_context, params.opener_suppressed ? NULL : opener); if (params.guest_delegate) { // This makes |new_contents| act as a guest. // For more info, see comment above class BrowserPluginGuest. BrowserPluginGuest::Create(new_contents, params.guest_delegate); // We are instantiating a WebContents for browser plugin. Set its subframe // bit to true. new_contents->is_subframe_ = true; } new_contents->Init(params); return new_contents; } // static std::vector WebContentsImpl::GetAllWebContents() { std::vector result; scoped_ptr widgets( RenderWidgetHostImpl::GetRenderWidgetHosts()); std::set web_contents_set; while (RenderWidgetHost* rwh = widgets->GetNextHost()) { if (!rwh->IsRenderView()) continue; RenderViewHost* rvh = RenderViewHost::From(rwh); if (!rvh) continue; WebContents* web_contents = WebContents::FromRenderViewHost(rvh); if (!web_contents) continue; WebContentsImpl* wci = static_cast(web_contents); if (web_contents_set.find(wci) == web_contents_set.end()) { web_contents_set.insert(wci); result.push_back(wci); } } return result; } RenderFrameHostManager* WebContentsImpl::GetRenderManagerForTesting() { return GetRenderManager(); } bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host, const IPC::Message& message) { return OnMessageReceived(render_view_host, NULL, message); } bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host, RenderFrameHost* render_frame_host, const IPC::Message& message) { DCHECK(render_view_host || render_frame_host); if (GetWebUI() && static_cast(GetWebUI())->OnMessageReceived(message)) { return true; } ObserverListBase::Iterator it(observers_); WebContentsObserver* observer; if (render_frame_host) { while ((observer = it.GetNext()) != NULL) if (observer->OnMessageReceived(message, render_frame_host)) return true; } else { while ((observer = it.GetNext()) != NULL) if (observer->OnMessageReceived(message)) return true; } // Message handlers should be aware of which // RenderViewHost/RenderFrameHost sent the message, which is temporarily // stored in render_(view|frame)_message_source_. if (render_frame_host) render_frame_message_source_ = render_frame_host; else render_view_message_source_ = render_view_host; bool handled = true; IPC_BEGIN_MESSAGE_MAP(WebContentsImpl, message) IPC_MESSAGE_HANDLER(FrameHostMsg_PepperPluginHung, OnPepperPluginHung) IPC_MESSAGE_HANDLER(FrameHostMsg_PluginCrashed, OnPluginCrashed) IPC_MESSAGE_HANDLER(FrameHostMsg_DomOperationResponse, OnDomOperationResponse) IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeThemeColor, OnThemeColorChanged) IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishDocumentLoad, OnDocumentLoadedInFrame) IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishLoad, OnDidFinishLoad) IPC_MESSAGE_HANDLER(FrameHostMsg_DidStartLoading, OnDidStartLoading) IPC_MESSAGE_HANDLER(FrameHostMsg_DidStopLoading, OnDidStopLoading) IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeLoadProgress, OnDidChangeLoadProgress) IPC_MESSAGE_HANDLER(FrameHostMsg_OpenColorChooser, OnOpenColorChooser) IPC_MESSAGE_HANDLER(FrameHostMsg_EndColorChooser, OnEndColorChooser) IPC_MESSAGE_HANDLER(FrameHostMsg_SetSelectedColorInColorChooser, OnSetSelectedColorInColorChooser) IPC_MESSAGE_HANDLER(FrameHostMsg_MediaPlayingNotification, OnMediaPlayingNotification) IPC_MESSAGE_HANDLER(FrameHostMsg_MediaPausedNotification, OnMediaPausedNotification) IPC_MESSAGE_HANDLER(FrameHostMsg_DidFirstVisuallyNonEmptyPaint, OnFirstVisuallyNonEmptyPaint) IPC_MESSAGE_HANDLER(ViewHostMsg_DidLoadResourceFromMemoryCache, OnDidLoadResourceFromMemoryCache) IPC_MESSAGE_HANDLER(ViewHostMsg_DidDisplayInsecureContent, OnDidDisplayInsecureContent) IPC_MESSAGE_HANDLER(ViewHostMsg_DidRunInsecureContent, OnDidRunInsecureContent) IPC_MESSAGE_HANDLER(ViewHostMsg_GoToEntryAtOffset, OnGoToEntryAtOffset) IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateZoomLimits, OnUpdateZoomLimits) IPC_MESSAGE_HANDLER(ViewHostMsg_EnumerateDirectory, OnEnumerateDirectory) IPC_MESSAGE_HANDLER(ViewHostMsg_RegisterProtocolHandler, OnRegisterProtocolHandler) IPC_MESSAGE_HANDLER(ViewHostMsg_UnregisterProtocolHandler, OnUnregisterProtocolHandler) IPC_MESSAGE_HANDLER(ViewHostMsg_Find_Reply, OnFindReply) IPC_MESSAGE_HANDLER(ViewHostMsg_AppCacheAccessed, OnAppCacheAccessed) IPC_MESSAGE_HANDLER(ViewHostMsg_WebUISend, OnWebUISend) #if defined(ENABLE_PLUGINS) IPC_MESSAGE_HANDLER(ViewHostMsg_RequestPpapiBrokerPermission, OnRequestPpapiBrokerPermission) IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_Attach, OnBrowserPluginMessage(message)) #endif IPC_MESSAGE_HANDLER(ImageHostMsg_DidDownloadImage, OnDidDownloadImage) IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFaviconURL, OnUpdateFaviconURL) IPC_MESSAGE_HANDLER(ViewHostMsg_ShowValidationMessage, OnShowValidationMessage) IPC_MESSAGE_HANDLER(ViewHostMsg_HideValidationMessage, OnHideValidationMessage) IPC_MESSAGE_HANDLER(ViewHostMsg_MoveValidationMessage, OnMoveValidationMessage) #if defined(OS_ANDROID) IPC_MESSAGE_HANDLER(ViewHostMsg_FindMatchRects_Reply, OnFindMatchRectsReply) IPC_MESSAGE_HANDLER(ViewHostMsg_OpenDateTimeDialog, OnOpenDateTimeDialog) #endif IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP() render_view_message_source_ = NULL; render_frame_message_source_ = NULL; return handled; } void WebContentsImpl::RunFileChooser( RenderViewHost* render_view_host, const FileChooserParams& params) { if (delegate_) delegate_->RunFileChooser(this, params); } NavigationControllerImpl& WebContentsImpl::GetController() { return controller_; } const NavigationControllerImpl& WebContentsImpl::GetController() const { return controller_; } BrowserContext* WebContentsImpl::GetBrowserContext() const { return controller_.GetBrowserContext(); } const GURL& WebContentsImpl::GetURL() const { // We may not have a navigation entry yet. NavigationEntry* entry = controller_.GetVisibleEntry(); return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); } const GURL& WebContentsImpl::GetVisibleURL() const { // We may not have a navigation entry yet. NavigationEntry* entry = controller_.GetVisibleEntry(); return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); } const GURL& WebContentsImpl::GetLastCommittedURL() const { // We may not have a navigation entry yet. NavigationEntry* entry = controller_.GetLastCommittedEntry(); return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); } WebContentsDelegate* WebContentsImpl::GetDelegate() { return delegate_; } void WebContentsImpl::SetDelegate(WebContentsDelegate* delegate) { // TODO(cbentzel): remove this debugging code? if (delegate == delegate_) return; if (delegate_) delegate_->Detach(this); delegate_ = delegate; if (delegate_) { delegate_->Attach(this); // Ensure the visible RVH reflects the new delegate's preferences. if (view_) view_->SetOverscrollControllerEnabled(CanOverscrollContent()); } } RenderProcessHost* WebContentsImpl::GetRenderProcessHost() const { RenderViewHostImpl* host = GetRenderManager()->current_host(); return host ? host->GetProcess() : NULL; } RenderFrameHost* WebContentsImpl::GetMainFrame() { return frame_tree_.root()->current_frame_host(); } RenderFrameHost* WebContentsImpl::GetFocusedFrame() { if (!frame_tree_.GetFocusedFrame()) return NULL; return frame_tree_.GetFocusedFrame()->current_frame_host(); } void WebContentsImpl::ForEachFrame( const base::Callback& on_frame) { frame_tree_.ForEach(base::Bind(&ForEachFrameInternal, on_frame)); } void WebContentsImpl::SendToAllFrames(IPC::Message* message) { ForEachFrame(base::Bind(&SendToAllFramesInternal, message)); delete message; } RenderViewHost* WebContentsImpl::GetRenderViewHost() const { return GetRenderManager()->current_host(); } int WebContentsImpl::GetRoutingID() const { if (!GetRenderViewHost()) return MSG_ROUTING_NONE; return GetRenderViewHost()->GetRoutingID(); } int WebContentsImpl::GetFullscreenWidgetRoutingID() const { return fullscreen_widget_routing_id_; } RenderWidgetHostView* WebContentsImpl::GetRenderWidgetHostView() const { return GetRenderManager()->GetRenderWidgetHostView(); } RenderWidgetHostView* WebContentsImpl::GetFullscreenRenderWidgetHostView() const { RenderWidgetHost* const widget_host = RenderWidgetHostImpl::FromID(GetRenderProcessHost()->GetID(), GetFullscreenWidgetRoutingID()); return widget_host ? widget_host->GetView() : NULL; } WebContentsView* WebContentsImpl::GetView() const { return view_.get(); } void WebContentsImpl::SetAccessibilityMode(AccessibilityMode mode) { if (mode == accessibility_mode_) return; accessibility_mode_ = mode; frame_tree_.ForEach( base::Bind(&ForEachFrameInternal, base::Bind(&SetAccessibilityModeOnFrame, mode))); frame_tree_.ForEach( base::Bind(&ForEachPendingFrameInternal, base::Bind(&SetAccessibilityModeOnFrame, mode))); } void WebContentsImpl::AddAccessibilityMode(AccessibilityMode mode) { SetAccessibilityMode(AddAccessibilityModeTo(accessibility_mode_, mode)); } void WebContentsImpl::RemoveAccessibilityMode(AccessibilityMode mode) { SetAccessibilityMode(RemoveAccessibilityModeFrom(accessibility_mode_, mode)); } WebUI* WebContentsImpl::CreateWebUI(const GURL& url) { WebUIImpl* web_ui = new WebUIImpl(this); WebUIController* controller = WebUIControllerFactoryRegistry::GetInstance()-> CreateWebUIControllerForURL(web_ui, url); if (controller) { web_ui->AddMessageHandler(new GenericHandler()); web_ui->SetController(controller); return web_ui; } delete web_ui; return NULL; } WebUI* WebContentsImpl::GetWebUI() const { return GetRenderManager()->web_ui() ? GetRenderManager()->web_ui() : GetRenderManager()->pending_web_ui(); } WebUI* WebContentsImpl::GetCommittedWebUI() const { return GetRenderManager()->web_ui(); } void WebContentsImpl::SetUserAgentOverride(const std::string& override) { if (GetUserAgentOverride() == override) return; renderer_preferences_.user_agent_override = override; // Send the new override string to the renderer. RenderViewHost* host = GetRenderViewHost(); if (host) host->SyncRendererPrefs(); // Reload the page if a load is currently in progress to avoid having // different parts of the page loaded using different user agents. NavigationEntry* entry = controller_.GetVisibleEntry(); if (is_loading_ && entry != NULL && entry->GetIsOverridingUserAgent()) controller_.ReloadIgnoringCache(true); FOR_EACH_OBSERVER(WebContentsObserver, observers_, UserAgentOverrideSet(override)); } const std::string& WebContentsImpl::GetUserAgentOverride() const { return renderer_preferences_.user_agent_override; } void WebContentsImpl::EnableTreeOnlyAccessibilityMode() { AddAccessibilityMode(AccessibilityModeTreeOnly); } bool WebContentsImpl::IsTreeOnlyAccessibilityModeForTesting() const { return accessibility_mode_ == AccessibilityModeTreeOnly; } bool WebContentsImpl::IsFullAccessibilityModeForTesting() const { return accessibility_mode_ == AccessibilityModeComplete; } #if defined(OS_WIN) void WebContentsImpl::SetParentNativeViewAccessible( gfx::NativeViewAccessible accessible_parent) { accessible_parent_ = accessible_parent; RenderFrameHostImpl* rfh = static_cast(GetMainFrame()); if (rfh) rfh->SetParentNativeViewAccessible(accessible_parent); } #endif const base::string16& WebContentsImpl::GetTitle() const { // Transient entries take precedence. They are used for interstitial pages // that are shown on top of existing pages. NavigationEntry* entry = controller_.GetTransientEntry(); std::string accept_languages = GetContentClient()->browser()->GetAcceptLangs( GetBrowserContext()); if (entry) { return entry->GetTitleForDisplay(accept_languages); } WebUI* our_web_ui = GetRenderManager()->pending_web_ui() ? GetRenderManager()->pending_web_ui() : GetRenderManager()->web_ui(); if (our_web_ui) { // Don't override the title in view source mode. entry = controller_.GetVisibleEntry(); if (!(entry && entry->IsViewSourceMode())) { // Give the Web UI the chance to override our title. const base::string16& title = our_web_ui->GetOverriddenTitle(); if (!title.empty()) return title; } } // We use the title for the last committed entry rather than a pending // navigation entry. For example, when the user types in a URL, we want to // keep the old page's title until the new load has committed and we get a new // title. entry = controller_.GetLastCommittedEntry(); // We make an exception for initial navigations. if (controller_.IsInitialNavigation()) { // We only want to use the title from the visible entry in one of two cases: // 1. There's already a committed entry for an initial navigation, in which // case we are doing a history navigation in a new tab (e.g., Ctrl+Back). // 2. The pending entry has been explicitly assigned a title to display. // // If there's no last committed entry and no assigned title, we should fall // back to |page_title_when_no_navigation_entry_| rather than showing the // URL. if (entry || (controller_.GetVisibleEntry() && !controller_.GetVisibleEntry()->GetTitle().empty())) { entry = controller_.GetVisibleEntry(); } } if (entry) { return entry->GetTitleForDisplay(accept_languages); } // |page_title_when_no_navigation_entry_| is finally used // if no title cannot be retrieved. return page_title_when_no_navigation_entry_; } int32 WebContentsImpl::GetMaxPageID() { return GetMaxPageIDForSiteInstance(GetSiteInstance()); } int32 WebContentsImpl::GetMaxPageIDForSiteInstance( SiteInstance* site_instance) { if (max_page_ids_.find(site_instance->GetId()) == max_page_ids_.end()) max_page_ids_[site_instance->GetId()] = -1; return max_page_ids_[site_instance->GetId()]; } void WebContentsImpl::UpdateMaxPageID(int32 page_id) { UpdateMaxPageIDForSiteInstance(GetSiteInstance(), page_id); } void WebContentsImpl::UpdateMaxPageIDForSiteInstance( SiteInstance* site_instance, int32 page_id) { if (GetMaxPageIDForSiteInstance(site_instance) < page_id) max_page_ids_[site_instance->GetId()] = page_id; } void WebContentsImpl::CopyMaxPageIDsFrom(WebContents* web_contents) { WebContentsImpl* contents = static_cast(web_contents); max_page_ids_ = contents->max_page_ids_; } SiteInstanceImpl* WebContentsImpl::GetSiteInstance() const { return GetRenderManager()->current_host()->GetSiteInstance(); } SiteInstanceImpl* WebContentsImpl::GetPendingSiteInstance() const { RenderViewHostImpl* dest_rvh = GetRenderManager()->pending_render_view_host() ? GetRenderManager()->pending_render_view_host() : GetRenderManager()->current_host(); return dest_rvh->GetSiteInstance(); } bool WebContentsImpl::IsLoading() const { return is_loading_; } bool WebContentsImpl::IsLoadingToDifferentDocument() const { return is_loading_ && is_load_to_different_document_; } bool WebContentsImpl::IsWaitingForResponse() const { return waiting_for_response_ && is_load_to_different_document_; } const net::LoadStateWithParam& WebContentsImpl::GetLoadState() const { return load_state_; } const base::string16& WebContentsImpl::GetLoadStateHost() const { return load_state_host_; } uint64 WebContentsImpl::GetUploadSize() const { return upload_size_; } uint64 WebContentsImpl::GetUploadPosition() const { return upload_position_; } std::set WebContentsImpl::GetSitesInTab() const { std::set sites; frame_tree_.ForEach(base::Bind(&CollectSites, base::Unretained(GetBrowserContext()), base::Unretained(&sites))); return sites; } const std::string& WebContentsImpl::GetEncoding() const { return canonical_encoding_; } bool WebContentsImpl::DisplayedInsecureContent() const { return displayed_insecure_content_; } void WebContentsImpl::IncrementCapturerCount(const gfx::Size& capture_size) { DCHECK(!is_being_destroyed_); ++capturer_count_; DVLOG(1) << "There are now " << capturer_count_ << " capturing(s) of WebContentsImpl@" << this; // Note: This provides a hint to upstream code to size the views optimally // for quality (e.g., to avoid scaling). if (!capture_size.IsEmpty() && preferred_size_for_capture_.IsEmpty()) { preferred_size_for_capture_ = capture_size; OnPreferredSizeChanged(preferred_size_); } } void WebContentsImpl::DecrementCapturerCount() { --capturer_count_; DVLOG(1) << "There are now " << capturer_count_ << " capturing(s) of WebContentsImpl@" << this; DCHECK_LE(0, capturer_count_); if (is_being_destroyed_) return; if (capturer_count_ == 0) { const gfx::Size old_size = preferred_size_for_capture_; preferred_size_for_capture_ = gfx::Size(); OnPreferredSizeChanged(old_size); } if (IsHidden()) { DVLOG(1) << "Executing delayed WasHidden()."; WasHidden(); } } int WebContentsImpl::GetCapturerCount() const { return capturer_count_; } bool WebContentsImpl::IsAudioMuted() const { return audio_muter_.get() && audio_muter_->is_muting(); } void WebContentsImpl::SetAudioMuted(bool mute) { DVLOG(1) << "SetAudioMuted(mute=" << mute << "), was " << IsAudioMuted() << " for WebContentsImpl@" << this; if (mute == IsAudioMuted()) return; if (mute) { if (!audio_muter_) audio_muter_.reset(new WebContentsAudioMuter(this)); audio_muter_->StartMuting(); } else { DCHECK(audio_muter_); audio_muter_->StopMuting(); } // Notification for UI updates in response to the changed muting state. NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); } bool WebContentsImpl::IsCrashed() const { return (crashed_status_ == base::TERMINATION_STATUS_PROCESS_CRASHED || crashed_status_ == base::TERMINATION_STATUS_ABNORMAL_TERMINATION || crashed_status_ == base::TERMINATION_STATUS_PROCESS_WAS_KILLED); } void WebContentsImpl::SetIsCrashed(base::TerminationStatus status, int error_code) { if (status == crashed_status_) return; crashed_status_ = status; crashed_error_code_ = error_code; NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); } base::TerminationStatus WebContentsImpl::GetCrashedStatus() const { return crashed_status_; } bool WebContentsImpl::IsBeingDestroyed() const { return is_being_destroyed_; } void WebContentsImpl::NotifyNavigationStateChanged( InvalidateTypes changed_flags) { // Create and release the audio power save blocker depending on whether the // tab is actively producing audio or not. if (changed_flags == INVALIDATE_TYPE_TAB && AudioStreamMonitor::monitoring_available()) { if (WasRecentlyAudible()) { if (!audio_power_save_blocker_) CreateAudioPowerSaveBlocker(); } else { audio_power_save_blocker_.reset(); } } if (delegate_) delegate_->NavigationStateChanged(this, changed_flags); } base::TimeTicks WebContentsImpl::GetLastActiveTime() const { return last_active_time_; } void WebContentsImpl::WasShown() { controller_.SetActive(true); std::set widgets = GetRenderWidgetHostViewsInTree(); for (std::set::iterator iter = widgets.begin(); iter != widgets.end(); iter++) { if (*iter) { (*iter)->Show(); #if defined(OS_MACOSX) (*iter)->SetActive(true); #endif } } last_active_time_ = base::TimeTicks::Now(); // The resize rect might have changed while this was inactive -- send the new // one to make sure it's up to date. RenderViewHostImpl* rvh = static_cast(GetRenderViewHost()); if (rvh) { rvh->ResizeRectChanged(GetRootWindowResizerRect()); } // Restore power save blocker if there are active video players running. if (!active_video_players_.empty() && !video_power_save_blocker_) CreateVideoPowerSaveBlocker(); FOR_EACH_OBSERVER(WebContentsObserver, observers_, WasShown()); should_normally_be_visible_ = true; } void WebContentsImpl::WasHidden() { // If there are entities capturing screenshots or video (e.g., mirroring), // don't activate the "disable rendering" optimization. if (capturer_count_ == 0) { // |GetRenderViewHost()| can be NULL if the user middle clicks a link to // open a tab in the background, then closes the tab before selecting it. // This is because closing the tab calls WebContentsImpl::Destroy(), which // removes the |GetRenderViewHost()|; then when we actually destroy the // window, OnWindowPosChanged() notices and calls WasHidden() (which // calls us). std::set widgets = GetRenderWidgetHostViewsInTree(); for (std::set::iterator iter = widgets.begin(); iter != widgets.end(); iter++) { if (*iter) (*iter)->Hide(); } // Release any video power save blockers held as video is not visible. video_power_save_blocker_.reset(); } FOR_EACH_OBSERVER(WebContentsObserver, observers_, WasHidden()); should_normally_be_visible_ = false; } bool WebContentsImpl::NeedToFireBeforeUnload() { // TODO(creis): Should we fire even for interstitial pages? return WillNotifyDisconnection() && !ShowingInterstitialPage() && !static_cast( GetRenderViewHost())->SuddenTerminationAllowed(); } void WebContentsImpl::DispatchBeforeUnload(bool for_cross_site_transition) { static_cast(GetMainFrame())->DispatchBeforeUnload( for_cross_site_transition); } void WebContentsImpl::Stop() { GetRenderManager()->Stop(); FOR_EACH_OBSERVER(WebContentsObserver, observers_, NavigationStopped()); } WebContents* WebContentsImpl::Clone() { // We use our current SiteInstance since the cloned entry will use it anyway. // We pass our own opener so that the cloned page can access it if it was // before. CreateParams create_params(GetBrowserContext(), GetSiteInstance()); create_params.initial_size = GetContainerBounds().size(); WebContentsImpl* tc = CreateWithOpener(create_params, opener_); tc->GetController().CopyStateFrom(controller_); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidCloneToNewWebContents(this, tc)); return tc; } void WebContentsImpl::Observe(int type, const NotificationSource& source, const NotificationDetails& details) { switch (type) { case NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED: { RenderWidgetHost* host = Source(source).ptr(); RenderWidgetHostView* view = host->GetView(); if (view == GetFullscreenRenderWidgetHostView()) { // We cannot just call view_->RestoreFocus() here. On some platforms, // attempting to focus the currently-invisible WebContentsView will be // flat-out ignored. Therefore, this boolean is used to track whether // we will request focus after the fullscreen widget has been // destroyed. fullscreen_widget_had_focus_at_shutdown_ = (view && view->HasFocus()); } else { for (PendingWidgetViews::iterator i = pending_widget_views_.begin(); i != pending_widget_views_.end(); ++i) { if (host->GetView() == i->second) { pending_widget_views_.erase(i); break; } } } break; } default: NOTREACHED(); } } WebContents* WebContentsImpl::GetWebContents() { return this; } void WebContentsImpl::Init(const WebContents::CreateParams& params) { // This is set before initializing the render manager since // RenderFrameHostManager::Init calls back into us via its delegate to ask if // it should be hidden. should_normally_be_visible_ = !params.initially_hidden; GetRenderManager()->Init( params.browser_context, params.site_instance, params.routing_id, params.main_frame_routing_id); WebContentsViewDelegate* delegate = GetContentClient()->browser()->GetWebContentsViewDelegate(this); if (browser_plugin_guest_) { scoped_ptr platform_view(CreateWebContentsView( this, delegate, &render_view_host_delegate_view_)); WebContentsViewGuest* rv = new WebContentsViewGuest( this, browser_plugin_guest_.get(), platform_view.Pass(), render_view_host_delegate_view_); render_view_host_delegate_view_ = rv; view_.reset(rv); } else { // Regular WebContentsView. view_.reset(CreateWebContentsView( this, delegate, &render_view_host_delegate_view_)); } CHECK(render_view_host_delegate_view_); CHECK(view_.get()); gfx::Size initial_size = params.initial_size; view_->CreateView(initial_size, params.context); // Listen for whether our opener gets destroyed. if (opener_) AddDestructionObserver(opener_); registrar_.Add(this, NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED, NotificationService::AllBrowserContextsAndSources()); geolocation_dispatcher_host_.reset(new GeolocationDispatcherHost(this)); midi_dispatcher_host_.reset(new MidiDispatcherHost(this)); screen_orientation_dispatcher_host_.reset( new ScreenOrientationDispatcherHostImpl(this)); manifest_manager_host_.reset(new ManifestManagerHost(this)); #if defined(OS_ANDROID) date_time_chooser_.reset(new DateTimeChooserAndroid()); #endif } void WebContentsImpl::OnWebContentsDestroyed(WebContentsImpl* web_contents) { RemoveDestructionObserver(web_contents); // Clear the opener if it has been closed. if (web_contents == opener_) { opener_ = NULL; return; } // Clear a pending contents that has been closed before being shown. for (PendingContents::iterator iter = pending_contents_.begin(); iter != pending_contents_.end(); ++iter) { if (iter->second != web_contents) continue; pending_contents_.erase(iter); return; } NOTREACHED(); } void WebContentsImpl::AddDestructionObserver(WebContentsImpl* web_contents) { if (!ContainsKey(destruction_observers_, web_contents)) { destruction_observers_[web_contents] = new DestructionObserver(this, web_contents); } } void WebContentsImpl::RemoveDestructionObserver(WebContentsImpl* web_contents) { DestructionObservers::iterator iter = destruction_observers_.find(web_contents); if (iter != destruction_observers_.end()) { delete destruction_observers_[web_contents]; destruction_observers_.erase(iter); } } void WebContentsImpl::AddObserver(WebContentsObserver* observer) { observers_.AddObserver(observer); } void WebContentsImpl::RemoveObserver(WebContentsObserver* observer) { observers_.RemoveObserver(observer); } std::set WebContentsImpl::GetRenderWidgetHostViewsInTree() { std::set set; if (ShowingInterstitialPage()) { set.insert(GetRenderWidgetHostView()); } else { ForEachFrame( base::Bind(&AddRenderWidgetHostViewToSet, base::Unretained(&set))); } return set; } void WebContentsImpl::Activate() { if (delegate_) delegate_->ActivateContents(this); } void WebContentsImpl::Deactivate() { if (delegate_) delegate_->DeactivateContents(this); } void WebContentsImpl::LostCapture() { if (delegate_) delegate_->LostCapture(); } void WebContentsImpl::RenderWidgetDeleted( RenderWidgetHostImpl* render_widget_host) { if (is_being_destroyed_) { // |created_widgets_| might have been destroyed. return; } std::set::iterator iter = created_widgets_.find(render_widget_host); if (iter != created_widgets_.end()) created_widgets_.erase(iter); if (render_widget_host && render_widget_host->GetRoutingID() == fullscreen_widget_routing_id_) { if (delegate_ && delegate_->EmbedsFullscreenWidget()) delegate_->ToggleFullscreenModeForTab(this, false); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidDestroyFullscreenWidget( fullscreen_widget_routing_id_)); fullscreen_widget_routing_id_ = MSG_ROUTING_NONE; if (fullscreen_widget_had_focus_at_shutdown_) view_->RestoreFocus(); } } void WebContentsImpl::RenderWidgetGotFocus( RenderWidgetHostImpl* render_widget_host) { // Notify the delegate if an embedded fullscreen widget was focused. if (delegate_ && render_widget_host && delegate_->EmbedsFullscreenWidget() && render_widget_host->GetView() == GetFullscreenRenderWidgetHostView()) delegate_->WebContentsFocused(this); } bool WebContentsImpl::PreHandleKeyboardEvent( const NativeWebKeyboardEvent& event, bool* is_keyboard_shortcut) { return delegate_ && delegate_->PreHandleKeyboardEvent(this, event, is_keyboard_shortcut); } void WebContentsImpl::HandleKeyboardEvent(const NativeWebKeyboardEvent& event) { if (browser_plugin_embedder_ && browser_plugin_embedder_->HandleKeyboardEvent(event)) { return; } if (delegate_) delegate_->HandleKeyboardEvent(this, event); } bool WebContentsImpl::HandleWheelEvent( const blink::WebMouseWheelEvent& event) { #if !defined(OS_MACOSX) // On platforms other than Mac, control+mousewheel changes zoom. On Mac, this // isn't done for two reasons: // -the OS already has a gesture to do this through pinch-zoom // -if a user starts an inertial scroll, let's go, and presses control // (i.e. control+tab) then the OS's buffered scroll events will come in // with control key set which isn't what the user wants if (delegate_ && event.wheelTicksY && (event.modifiers & blink::WebInputEvent::ControlKey) && // Avoid adjusting the zoom in response to two-finger-scrolling touchpad // gestures, which are regrettably easy to trigger accidentally. !event.hasPreciseScrollingDeltas) { delegate_->ContentsZoomChange(event.wheelTicksY > 0); return true; } #endif return false; } bool WebContentsImpl::PreHandleGestureEvent( const blink::WebGestureEvent& event) { return delegate_ && delegate_->PreHandleGestureEvent(this, event); } bool WebContentsImpl::HandleGestureEvent( const blink::WebGestureEvent& event) { // Some platforms (eg. Mac) send GesturePinch events for trackpad pinch-zoom. // Use them to implement browser zoom, as for HandleWheelEvent above. if (event.type == blink::WebInputEvent::GesturePinchUpdate && event.sourceDevice == blink::WebGestureDeviceTouchpad) { // The scale difference necessary to trigger a zoom action. Derived from // experimentation to find a value that feels reasonable. const float kZoomStepValue = 0.6f; // Find the (absolute) thresholds on either side of the current zoom factor, // then convert those to actual numbers to trigger a zoom in or out. // This logic deliberately makes the range around the starting zoom value // for the gesture twice as large as the other ranges (i.e., the notches are // at ..., -3*step, -2*step, -step, step, 2*step, 3*step, ... but not at 0) // so that it's easier to get back to your starting point than it is to // overshoot. float nextStep = (abs(currentPinchZoomStepDelta_) + 1) * kZoomStepValue; float backStep = abs(currentPinchZoomStepDelta_) * kZoomStepValue; float zoomInThreshold = (currentPinchZoomStepDelta_ >= 0) ? nextStep : -backStep; float zoomOutThreshold = (currentPinchZoomStepDelta_ <= 0) ? -nextStep : backStep; totalPinchGestureAmount_ += (event.data.pinchUpdate.scale - 1.0); if (totalPinchGestureAmount_ > zoomInThreshold) { currentPinchZoomStepDelta_++; if (delegate_) delegate_->ContentsZoomChange(true); } else if (totalPinchGestureAmount_ < zoomOutThreshold) { currentPinchZoomStepDelta_--; if (delegate_) delegate_->ContentsZoomChange(false); } return true; } return false; } void WebContentsImpl::HandleMouseDown() { if (delegate_) delegate_->HandleMouseDown(); } void WebContentsImpl::HandleMouseUp() { if (delegate_) delegate_->HandleMouseUp(); } void WebContentsImpl::HandlePointerActivate() { if (delegate_) delegate_->HandlePointerActivate(); } void WebContentsImpl::HandleGestureBegin() { if (delegate_) delegate_->HandleGestureBegin(); } void WebContentsImpl::HandleGestureEnd() { if (delegate_) delegate_->HandleGestureEnd(); } void WebContentsImpl::ToggleFullscreenMode(bool enter_fullscreen) { // This method is being called to enter or leave renderer-initiated fullscreen // mode. Either way, make sure any existing fullscreen widget is shut down // first. RenderWidgetHostView* const widget_view = GetFullscreenRenderWidgetHostView(); if (widget_view) RenderWidgetHostImpl::From(widget_view->GetRenderWidgetHost())->Shutdown(); if (delegate_) delegate_->ToggleFullscreenModeForTab(this, enter_fullscreen); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidToggleFullscreenModeForTab(IsFullscreenForCurrentTab())); } bool WebContentsImpl::IsFullscreenForCurrentTab() const { return delegate_ ? delegate_->IsFullscreenForTabOrPending(this) : false; } void WebContentsImpl::RequestToLockMouse(bool user_gesture, bool last_unlocked_by_target) { if (delegate_) { delegate_->RequestToLockMouse(this, user_gesture, last_unlocked_by_target); } else { GotResponseToLockMouseRequest(false); } } void WebContentsImpl::LostMouseLock() { if (delegate_) delegate_->LostMouseLock(); } void WebContentsImpl::CreateNewWindow( int render_process_id, int route_id, int main_frame_route_id, const ViewHostMsg_CreateWindow_Params& params, SessionStorageNamespace* session_storage_namespace) { // We usually create the new window in the same BrowsingInstance (group of // script-related windows), by passing in the current SiteInstance. However, // if the opener is being suppressed (in a non-guest), we create a new // SiteInstance in its own BrowsingInstance. bool is_guest = BrowserPluginGuest::IsGuest(this); // If the opener is to be suppressed, the new window can be in any process. // Since routing ids are process specific, we must not have one passed in // as argument here. DCHECK(!params.opener_suppressed || route_id == MSG_ROUTING_NONE); scoped_refptr site_instance = params.opener_suppressed && !is_guest ? SiteInstance::CreateForURL(GetBrowserContext(), params.target_url) : GetSiteInstance(); // A message to create a new window can only come from the active process for // this WebContentsImpl instance. If any other process sends the request, // it is invalid and the process must be terminated. if (GetRenderProcessHost()->GetID() != render_process_id) { base::ProcessHandle process_handle = RenderProcessHost::FromID(render_process_id)->GetHandle(); if (process_handle != base::kNullProcessHandle) { RecordAction( base::UserMetricsAction("Terminate_ProcessMismatch_CreateNewWindow")); base::KillProcess(process_handle, RESULT_CODE_KILLED, false); } return; } // We must assign the SessionStorageNamespace before calling Init(). // // http://crbug.com/142685 const std::string& partition_id = GetContentClient()->browser()-> GetStoragePartitionIdForSite(GetBrowserContext(), site_instance->GetSiteURL()); StoragePartition* partition = BrowserContext::GetStoragePartition( GetBrowserContext(), site_instance.get()); DOMStorageContextWrapper* dom_storage_context = static_cast(partition->GetDOMStorageContext()); SessionStorageNamespaceImpl* session_storage_namespace_impl = static_cast(session_storage_namespace); CHECK(session_storage_namespace_impl->IsFromContext(dom_storage_context)); if (delegate_ && !delegate_->ShouldCreateWebContents(this, route_id, params.window_container_type, params.frame_name, params.target_url, partition_id, session_storage_namespace)) { if (route_id != MSG_ROUTING_NONE && !RenderViewHost::FromID(render_process_id, route_id)) { // If the embedder didn't create a WebContents for this route, we need to // delete the RenderView that had already been created. Send(new ViewMsg_Close(route_id)); } GetRenderViewHost()->GetProcess()->ResumeRequestsForView(route_id); GetRenderViewHost()->GetProcess()->ResumeRequestsForView( main_frame_route_id); return; } // Create the new web contents. This will automatically create the new // WebContentsView. In the future, we may want to create the view separately. CreateParams create_params(GetBrowserContext(), site_instance.get()); create_params.routing_id = route_id; create_params.main_frame_routing_id = main_frame_route_id; create_params.opener = this; create_params.opener_suppressed = params.opener_suppressed; if (params.disposition == NEW_BACKGROUND_TAB) create_params.initially_hidden = true; WebContentsImpl* new_contents = NULL; if (!is_guest) { create_params.context = view_->GetNativeView(); create_params.initial_size = GetContainerBounds().size(); new_contents = static_cast( WebContents::Create(create_params)); } else { new_contents = GetBrowserPluginGuest()->CreateNewGuestWindow(create_params); } new_contents->GetController().SetSessionStorageNamespace( partition_id, session_storage_namespace); new_contents->RenderViewCreated(new_contents->GetRenderViewHost()); // Save the window for later if we're not suppressing the opener (since it // will be shown immediately). if (!params.opener_suppressed) { if (!is_guest) { WebContentsView* new_view = new_contents->view_.get(); // TODO(brettw): It seems bogus that we have to call this function on the // newly created object and give it one of its own member variables. new_view->CreateViewForWidget(new_contents->GetRenderViewHost(), false); } // Save the created window associated with the route so we can show it // later. DCHECK_NE(MSG_ROUTING_NONE, route_id); pending_contents_[route_id] = new_contents; AddDestructionObserver(new_contents); } if (delegate_) { delegate_->WebContentsCreated( this, params.opener_render_frame_id, params.frame_name, params.target_url, new_contents); } if (params.opener_suppressed) { // When the opener is suppressed, the original renderer cannot access the // new window. As a result, we need to show and navigate the window here. bool was_blocked = false; if (delegate_) { gfx::Rect initial_pos; delegate_->AddNewContents( this, new_contents, params.disposition, initial_pos, params.user_gesture, &was_blocked); } if (!was_blocked) { OpenURLParams open_params(params.target_url, Referrer(), CURRENT_TAB, ui::PAGE_TRANSITION_LINK, true /* is_renderer_initiated */); open_params.user_gesture = params.user_gesture; new_contents->OpenURL(open_params); } } } void WebContentsImpl::CreateNewWidget(int render_process_id, int route_id, blink::WebPopupType popup_type) { CreateNewWidget(render_process_id, route_id, false, popup_type); } void WebContentsImpl::CreateNewFullscreenWidget(int render_process_id, int route_id) { CreateNewWidget(render_process_id, route_id, true, blink::WebPopupTypeNone); } void WebContentsImpl::CreateNewWidget(int render_process_id, int route_id, bool is_fullscreen, blink::WebPopupType popup_type) { RenderProcessHost* process = GetRenderProcessHost(); // A message to create a new widget can only come from the active process for // this WebContentsImpl instance. If any other process sends the request, // it is invalid and the process must be terminated. if (process->GetID() != render_process_id) { base::ProcessHandle process_handle = RenderProcessHost::FromID(render_process_id)->GetHandle(); if (process_handle != base::kNullProcessHandle) { RecordAction( base::UserMetricsAction("Terminate_ProcessMismatch_CreateNewWidget")); base::KillProcess(process_handle, RESULT_CODE_KILLED, false); } return; } RenderWidgetHostImpl* widget_host = new RenderWidgetHostImpl(this, process, route_id, IsHidden()); created_widgets_.insert(widget_host); RenderWidgetHostViewBase* widget_view = static_cast( view_->CreateViewForPopupWidget(widget_host)); if (!widget_view) return; if (!is_fullscreen) { // Popups should not get activated. widget_view->SetPopupType(popup_type); } // Save the created widget associated with the route so we can show it later. pending_widget_views_[route_id] = widget_view; #if defined(OS_MACOSX) // A RenderWidgetHostViewMac has lifetime scoped to the view. We'll retain it // to allow it to survive the trip without being hosted. base::mac::NSObjectRetain(widget_view->GetNativeView()); #endif } void WebContentsImpl::ShowCreatedWindow(int route_id, WindowOpenDisposition disposition, const gfx::Rect& initial_pos, bool user_gesture) { WebContentsImpl* contents = GetCreatedWindow(route_id); if (contents) { WebContentsDelegate* delegate = GetDelegate(); if (delegate) { delegate->AddNewContents( this, contents, disposition, initial_pos, user_gesture, NULL); } } } void WebContentsImpl::ShowCreatedWidget(int route_id, const gfx::Rect& initial_pos) { ShowCreatedWidget(route_id, false, initial_pos); } void WebContentsImpl::ShowCreatedFullscreenWidget(int route_id) { ShowCreatedWidget(route_id, true, gfx::Rect()); } void WebContentsImpl::ShowCreatedWidget(int route_id, bool is_fullscreen, const gfx::Rect& initial_pos) { RenderWidgetHostViewBase* widget_host_view = static_cast(GetCreatedWidget(route_id)); if (!widget_host_view) return; RenderWidgetHostView* view = NULL; BrowserPluginGuest* guest = GetBrowserPluginGuest(); if (guest && guest->embedder_web_contents()) { view = guest->embedder_web_contents()->GetRenderWidgetHostView(); } else { view = GetRenderWidgetHostView(); } if (is_fullscreen) { DCHECK_EQ(MSG_ROUTING_NONE, fullscreen_widget_routing_id_); view_->StoreFocus(); fullscreen_widget_routing_id_ = route_id; if (delegate_ && delegate_->EmbedsFullscreenWidget()) { widget_host_view->InitAsChild(GetRenderWidgetHostView()->GetNativeView()); delegate_->ToggleFullscreenModeForTab(this, true); } else { widget_host_view->InitAsFullscreen(view); } FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidShowFullscreenWidget(route_id)); if (!widget_host_view->HasFocus()) widget_host_view->Focus(); } else { widget_host_view->InitAsPopup(view, initial_pos); } RenderWidgetHostImpl* render_widget_host_impl = RenderWidgetHostImpl::From(widget_host_view->GetRenderWidgetHost()); render_widget_host_impl->Init(); // Only allow privileged mouse lock for fullscreen render widget, which is // used to implement Pepper Flash fullscreen. render_widget_host_impl->set_allow_privileged_mouse_lock(is_fullscreen); #if defined(OS_MACOSX) // A RenderWidgetHostViewMac has lifetime scoped to the view. Now that it's // properly embedded (or purposefully ignored) we can release the retain we // took in CreateNewWidget(). base::mac::NSObjectRelease(widget_host_view->GetNativeView()); #endif } WebContentsImpl* WebContentsImpl::GetCreatedWindow(int route_id) { PendingContents::iterator iter = pending_contents_.find(route_id); // Certain systems can block the creation of new windows. If we didn't succeed // in creating one, just return NULL. if (iter == pending_contents_.end()) { return NULL; } WebContentsImpl* new_contents = iter->second; pending_contents_.erase(route_id); RemoveDestructionObserver(new_contents); // Don't initialize the guest WebContents immediately. if (BrowserPluginGuest::IsGuest(new_contents)) return new_contents; if (!new_contents->GetRenderProcessHost()->HasConnection() || !new_contents->GetRenderViewHost()->GetView()) return NULL; // Resume blocked requests for both the RenderViewHost and RenderFrameHost. // TODO(brettw): It seems bogus to reach into here and initialize the host. static_cast(new_contents->GetRenderViewHost())->Init(); static_cast(new_contents->GetMainFrame())->Init(); return new_contents; } RenderWidgetHostView* WebContentsImpl::GetCreatedWidget(int route_id) { PendingWidgetViews::iterator iter = pending_widget_views_.find(route_id); if (iter == pending_widget_views_.end()) { DCHECK(false); return NULL; } RenderWidgetHostView* widget_host_view = iter->second; pending_widget_views_.erase(route_id); RenderWidgetHost* widget_host = widget_host_view->GetRenderWidgetHost(); if (!widget_host->GetProcess()->HasConnection()) { // The view has gone away or the renderer crashed. Nothing to do. return NULL; } return widget_host_view; } void WebContentsImpl::RequestMediaAccessPermission( const MediaStreamRequest& request, const MediaResponseCallback& callback) { if (delegate_) { delegate_->RequestMediaAccessPermission(this, request, callback); } else { callback.Run(MediaStreamDevices(), MEDIA_DEVICE_FAILED_DUE_TO_SHUTDOWN, scoped_ptr()); } } bool WebContentsImpl::CheckMediaAccessPermission(const GURL& security_origin, MediaStreamType type) { DCHECK(type == MEDIA_DEVICE_AUDIO_CAPTURE || type == MEDIA_DEVICE_VIDEO_CAPTURE); return delegate_ && delegate_->CheckMediaAccessPermission(this, security_origin, type); } SessionStorageNamespace* WebContentsImpl::GetSessionStorageNamespace( SiteInstance* instance) { return controller_.GetSessionStorageNamespace(instance); } SessionStorageNamespaceMap WebContentsImpl::GetSessionStorageNamespaceMap() { return controller_.GetSessionStorageNamespaceMap(); } FrameTree* WebContentsImpl::GetFrameTree() { return &frame_tree_; } AccessibilityMode WebContentsImpl::GetAccessibilityMode() const { return accessibility_mode_; } void WebContentsImpl::AccessibilityEventReceived( const std::vector& details) { FOR_EACH_OBSERVER( WebContentsObserver, observers_, AccessibilityEventReceived(details)); } RenderFrameHost* WebContentsImpl::GetGuestByInstanceID( int browser_plugin_instance_id) { BrowserPluginGuestManager* guest_manager = GetBrowserContext()->GetGuestManager(); WebContents* guest = guest_manager->GetGuestByInstanceID( this, browser_plugin_instance_id); if (!guest) return NULL; return guest->GetMainFrame(); } void WebContentsImpl::OnShowValidationMessage( const gfx::Rect& anchor_in_root_view, const base::string16& main_text, const base::string16& sub_text) { if (delegate_) delegate_->ShowValidationMessage( this, anchor_in_root_view, main_text, sub_text); } void WebContentsImpl::OnHideValidationMessage() { if (delegate_) delegate_->HideValidationMessage(this); } void WebContentsImpl::OnMoveValidationMessage( const gfx::Rect& anchor_in_root_view) { if (delegate_) delegate_->MoveValidationMessage(this, anchor_in_root_view); } void WebContentsImpl::DidSendScreenRects(RenderWidgetHostImpl* rwh) { if (browser_plugin_embedder_) browser_plugin_embedder_->DidSendScreenRects(); } BrowserAccessibilityManager* WebContentsImpl::GetRootBrowserAccessibilityManager() { RenderFrameHostImpl* rfh = static_cast(GetMainFrame()); return rfh ? rfh->browser_accessibility_manager() : NULL; } BrowserAccessibilityManager* WebContentsImpl::GetOrCreateRootBrowserAccessibilityManager() { RenderFrameHostImpl* rfh = static_cast(GetMainFrame()); return rfh ? rfh->GetOrCreateBrowserAccessibilityManager() : NULL; } void WebContentsImpl::UpdatePreferredSize(const gfx::Size& pref_size) { const gfx::Size old_size = GetPreferredSize(); preferred_size_ = pref_size; OnPreferredSizeChanged(old_size); } void WebContentsImpl::ResizeDueToAutoResize(const gfx::Size& new_size) { if (delegate_) delegate_->ResizeDueToAutoResize(this, new_size); } WebContents* WebContentsImpl::OpenURL(const OpenURLParams& params) { if (!delegate_) return NULL; WebContents* new_contents = delegate_->OpenURLFromTab(this, params); return new_contents; } bool WebContentsImpl::Send(IPC::Message* message) { if (!GetRenderViewHost()) { delete message; return false; } return GetRenderViewHost()->Send(message); } bool WebContentsImpl::NavigateToPendingEntry( NavigationController::ReloadType reload_type) { FrameTreeNode* node = frame_tree_.root(); // Navigate in the FrameTreeNode specified in the pending entry, if any. This // is currently only used in --site-per-process and tests. NavigationEntryImpl* pending_entry = NavigationEntryImpl::FromNavigationEntry(controller_.GetPendingEntry()); if (pending_entry->frame_tree_node_id() != -1) { FrameTreeNode* subframe = frame_tree_.FindByID(pending_entry->frame_tree_node_id()); DCHECK(subframe); if (subframe) node = subframe; } return node->navigator()->NavigateToPendingEntry( node->current_frame_host(), reload_type); } void WebContentsImpl::RenderFrameForInterstitialPageCreated( RenderFrameHost* render_frame_host) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameForInterstitialPageCreated(render_frame_host)); } void WebContentsImpl::AttachInterstitialPage( InterstitialPageImpl* interstitial_page) { DCHECK(interstitial_page); GetRenderManager()->set_interstitial_page(interstitial_page); // Cancel any visible dialogs so that they don't interfere with the // interstitial. if (dialog_manager_) dialog_manager_->CancelActiveAndPendingDialogs(this); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidAttachInterstitialPage()); } void WebContentsImpl::DetachInterstitialPage() { if (ShowingInterstitialPage()) GetRenderManager()->remove_interstitial_page(); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidDetachInterstitialPage()); } void WebContentsImpl::SetHistoryLengthAndPrune( const SiteInstance* site_instance, int history_length, int32 minimum_page_id) { // SetHistoryLengthAndPrune doesn't work when there are pending cross-site // navigations. Callers should ensure that this is the case. if (GetRenderManager()->pending_render_view_host()) { NOTREACHED(); return; } RenderViewHostImpl* rvh = GetRenderViewHostImpl(); if (!rvh) { NOTREACHED(); return; } if (site_instance && rvh->GetSiteInstance() != site_instance) { NOTREACHED(); return; } Send(new ViewMsg_SetHistoryLengthAndPrune(GetRoutingID(), history_length, minimum_page_id)); } void WebContentsImpl::ReloadFocusedFrame(bool ignore_cache) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new FrameMsg_Reload( focused_frame->GetRoutingID(), ignore_cache)); } void WebContentsImpl::Undo() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Undo(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Undo")); } void WebContentsImpl::Redo() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Redo(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Redo")); } void WebContentsImpl::Cut() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Cut(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Cut")); } void WebContentsImpl::Copy() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Copy(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Copy")); } void WebContentsImpl::CopyToFindPboard() { #if defined(OS_MACOSX) RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; // Windows/Linux don't have the concept of a find pasteboard. focused_frame->Send( new InputMsg_CopyToFindPboard(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("CopyToFindPboard")); #endif } void WebContentsImpl::Paste() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Paste(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Paste")); } void WebContentsImpl::PasteAndMatchStyle() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_PasteAndMatchStyle( focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("PasteAndMatchStyle")); } void WebContentsImpl::Delete() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Delete(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("DeleteSelection")); } void WebContentsImpl::SelectAll() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_SelectAll(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("SelectAll")); } void WebContentsImpl::Unselect() { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Unselect(focused_frame->GetRoutingID())); RecordAction(base::UserMetricsAction("Unselect")); } void WebContentsImpl::Replace(const base::string16& word) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_Replace( focused_frame->GetRoutingID(), word)); } void WebContentsImpl::ReplaceMisspelling(const base::string16& word) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new InputMsg_ReplaceMisspelling( focused_frame->GetRoutingID(), word)); } void WebContentsImpl::NotifyContextMenuClosed( const CustomContextMenuContext& context) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new FrameMsg_ContextMenuClosed( focused_frame->GetRoutingID(), context)); } void WebContentsImpl::ExecuteCustomContextMenuCommand( int action, const CustomContextMenuContext& context) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send(new FrameMsg_CustomContextMenuAction( focused_frame->GetRoutingID(), context, action)); } gfx::NativeView WebContentsImpl::GetNativeView() { return view_->GetNativeView(); } gfx::NativeView WebContentsImpl::GetContentNativeView() { return view_->GetContentNativeView(); } gfx::NativeWindow WebContentsImpl::GetTopLevelNativeWindow() { return view_->GetTopLevelNativeWindow(); } gfx::Rect WebContentsImpl::GetViewBounds() { return view_->GetViewBounds(); } gfx::Rect WebContentsImpl::GetContainerBounds() { gfx::Rect rv; view_->GetContainerBounds(&rv); return rv; } DropData* WebContentsImpl::GetDropData() { return view_->GetDropData(); } void WebContentsImpl::Focus() { view_->Focus(); } void WebContentsImpl::SetInitialFocus() { view_->SetInitialFocus(); } void WebContentsImpl::StoreFocus() { view_->StoreFocus(); } void WebContentsImpl::RestoreFocus() { view_->RestoreFocus(); } void WebContentsImpl::FocusThroughTabTraversal(bool reverse) { if (ShowingInterstitialPage()) { GetRenderManager()->interstitial_page()->FocusThroughTabTraversal(reverse); return; } RenderWidgetHostView* const fullscreen_view = GetFullscreenRenderWidgetHostView(); if (fullscreen_view) { fullscreen_view->Focus(); return; } GetRenderViewHostImpl()->SetInitialFocus(reverse); } bool WebContentsImpl::ShowingInterstitialPage() const { return GetRenderManager()->interstitial_page() != NULL; } InterstitialPage* WebContentsImpl::GetInterstitialPage() const { return GetRenderManager()->interstitial_page(); } bool WebContentsImpl::IsSavable() { // WebKit creates Document object when MIME type is application/xhtml+xml, // so we also support this MIME type. return contents_mime_type_ == "text/html" || contents_mime_type_ == "text/xml" || contents_mime_type_ == "application/xhtml+xml" || contents_mime_type_ == "text/plain" || contents_mime_type_ == "text/css" || net::IsSupportedJavascriptMimeType(contents_mime_type_.c_str()); } void WebContentsImpl::OnSavePage() { // If we can not save the page, try to download it. if (!IsSavable()) { RecordDownloadSource(INITIATED_BY_SAVE_PACKAGE_ON_NON_HTML); SaveFrame(GetURL(), Referrer()); return; } Stop(); // Create the save package and possibly prompt the user for the name to save // the page as. The user prompt is an asynchronous operation that runs on // another thread. save_package_ = new SavePackage(this); save_package_->GetSaveInfo(); } // Used in automated testing to bypass prompting the user for file names. // Instead, the names and paths are hard coded rather than running them through // file name sanitation and extension / mime checking. bool WebContentsImpl::SavePage(const base::FilePath& main_file, const base::FilePath& dir_path, SavePageType save_type) { // Stop the page from navigating. Stop(); save_package_ = new SavePackage(this, save_type, main_file, dir_path); return save_package_->Init(SavePackageDownloadCreatedCallback()); } void WebContentsImpl::SaveFrame(const GURL& url, const Referrer& referrer) { if (!GetURL().is_valid()) return; bool is_main_frame = (url == GetURL()); DownloadManager* dlm = BrowserContext::GetDownloadManager(GetBrowserContext()); if (!dlm) return; int64 post_id = -1; if (is_main_frame) { const NavigationEntry* entry = controller_.GetLastCommittedEntry(); if (entry) post_id = entry->GetPostID(); } scoped_ptr params( DownloadUrlParameters::FromWebContents(this, url)); params->set_referrer(referrer); params->set_post_id(post_id); params->set_prefer_cache(true); if (post_id >= 0) params->set_method("POST"); params->set_prompt(true); dlm->DownloadUrl(params.Pass()); } void WebContentsImpl::GenerateMHTML( const base::FilePath& file, const base::Callback& callback) { MHTMLGenerationManager::GetInstance()->SaveMHTML(this, file, callback); } const std::string& WebContentsImpl::GetContentsMimeType() const { return contents_mime_type_; } bool WebContentsImpl::WillNotifyDisconnection() const { return notify_disconnection_; } void WebContentsImpl::SetOverrideEncoding(const std::string& encoding) { SetEncoding(encoding); Send(new ViewMsg_SetPageEncoding(GetRoutingID(), encoding)); } void WebContentsImpl::ResetOverrideEncoding() { canonical_encoding_.clear(); Send(new ViewMsg_ResetPageEncodingToDefault(GetRoutingID())); } RendererPreferences* WebContentsImpl::GetMutableRendererPrefs() { return &renderer_preferences_; } void WebContentsImpl::Close() { Close(GetRenderViewHost()); } void WebContentsImpl::DragSourceEndedAt(int client_x, int client_y, int screen_x, int screen_y, blink::WebDragOperation operation) { if (browser_plugin_embedder_.get()) browser_plugin_embedder_->DragSourceEndedAt(client_x, client_y, screen_x, screen_y, operation); if (GetRenderViewHost()) GetRenderViewHostImpl()->DragSourceEndedAt(client_x, client_y, screen_x, screen_y, operation); } void WebContentsImpl::DidGetResourceResponseStart( const ResourceRequestDetails& details) { controller_.ssl_manager()->DidStartResourceResponse(details); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidGetResourceResponseStart(details)); // TODO(avi): Remove. http://crbug.com/170921 NotificationService::current()->Notify( NOTIFICATION_RESOURCE_RESPONSE_STARTED, Source(this), Details(&details)); } void WebContentsImpl::DidGetRedirectForResourceRequest( RenderViewHost* render_view_host, const ResourceRedirectDetails& details) { controller_.ssl_manager()->DidReceiveResourceRedirect(details); FOR_EACH_OBSERVER( WebContentsObserver, observers_, DidGetRedirectForResourceRequest(render_view_host, details)); // TODO(avi): Remove. http://crbug.com/170921 NotificationService::current()->Notify( NOTIFICATION_RESOURCE_RECEIVED_REDIRECT, Source(this), Details(&details)); } void WebContentsImpl::SystemDragEnded() { if (GetRenderViewHost()) GetRenderViewHostImpl()->DragSourceSystemDragEnded(); if (delegate_) delegate_->DragEnded(); if (browser_plugin_embedder_.get()) browser_plugin_embedder_->SystemDragEnded(); } void WebContentsImpl::UserGestureDone() { OnUserGesture(); } void WebContentsImpl::SetClosedByUserGesture(bool value) { closed_by_user_gesture_ = value; } bool WebContentsImpl::GetClosedByUserGesture() const { return closed_by_user_gesture_; } void WebContentsImpl::ViewSource() { if (!delegate_) return; NavigationEntry* entry = GetController().GetLastCommittedEntry(); if (!entry) return; delegate_->ViewSourceForTab(this, entry->GetURL()); } void WebContentsImpl::ViewFrameSource(const GURL& url, const PageState& page_state) { if (!delegate_) return; delegate_->ViewSourceForFrame(this, url, page_state); } int WebContentsImpl::GetMinimumZoomPercent() const { return minimum_zoom_percent_; } int WebContentsImpl::GetMaximumZoomPercent() const { return maximum_zoom_percent_; } gfx::Size WebContentsImpl::GetPreferredSize() const { return capturer_count_ == 0 ? preferred_size_ : preferred_size_for_capture_; } bool WebContentsImpl::GotResponseToLockMouseRequest(bool allowed) { if (GetBrowserPluginGuest()) return GetBrowserPluginGuest()->LockMouse(allowed); return GetRenderViewHost() ? GetRenderViewHostImpl()->GotResponseToLockMouseRequest(allowed) : false; } bool WebContentsImpl::HasOpener() const { return opener_ != NULL; } void WebContentsImpl::DidChooseColorInColorChooser(SkColor color) { if (!color_chooser_info_.get()) return; RenderFrameHost* rfh = RenderFrameHost::FromID( color_chooser_info_->render_process_id, color_chooser_info_->render_frame_id); if (!rfh) return; rfh->Send(new FrameMsg_DidChooseColorResponse( rfh->GetRoutingID(), color_chooser_info_->identifier, color)); } void WebContentsImpl::DidEndColorChooser() { if (!color_chooser_info_.get()) return; RenderFrameHost* rfh = RenderFrameHost::FromID( color_chooser_info_->render_process_id, color_chooser_info_->render_frame_id); if (!rfh) return; rfh->Send(new FrameMsg_DidEndColorChooser( rfh->GetRoutingID(), color_chooser_info_->identifier)); color_chooser_info_.reset(); } int WebContentsImpl::DownloadImage(const GURL& url, bool is_favicon, uint32_t max_bitmap_size, const ImageDownloadCallback& callback) { int id = StartDownload(GetMainFrame(), url, is_favicon, max_bitmap_size); image_download_map_[id] = callback; return id; } bool WebContentsImpl::IsSubframe() const { return is_subframe_; } void WebContentsImpl::Find(int request_id, const base::string16& search_text, const blink::WebFindOptions& options) { // See if a top level browser plugin handles the find request first. if (browser_plugin_embedder_ && browser_plugin_embedder_->Find(request_id, search_text, options)) { return; } Send(new ViewMsg_Find(GetRoutingID(), request_id, search_text, options)); } void WebContentsImpl::StopFinding(StopFindAction action) { Send(new ViewMsg_StopFinding(GetRoutingID(), action)); } void WebContentsImpl::InsertCSS(const std::string& css) { GetMainFrame()->Send(new FrameMsg_CSSInsertRequest( GetMainFrame()->GetRoutingID(), css)); } bool WebContentsImpl::WasRecentlyAudible() { return audio_stream_monitor_.WasRecentlyAudible(); } void WebContentsImpl::GetManifest(const GetManifestCallback& callback) { manifest_manager_host_->GetManifest(GetMainFrame(), callback); } bool WebContentsImpl::FocusLocationBarByDefault() { NavigationEntry* entry = controller_.GetVisibleEntry(); if (entry && entry->GetURL() == GURL(url::kAboutBlankURL)) return true; return delegate_ && delegate_->ShouldFocusLocationBarByDefault(this); } void WebContentsImpl::SetFocusToLocationBar(bool select_all) { if (delegate_) delegate_->SetFocusToLocationBar(select_all); } void WebContentsImpl::DidStartProvisionalLoad( RenderFrameHostImpl* render_frame_host, const GURL& validated_url, bool is_error_page, bool is_iframe_srcdoc) { // Notify observers about the start of the provisional load. FOR_EACH_OBSERVER( WebContentsObserver, observers_, DidStartProvisionalLoadForFrame( render_frame_host, validated_url, is_error_page, is_iframe_srcdoc)); } void WebContentsImpl::DidStartNavigationTransition( RenderFrameHostImpl* render_frame_host) { #if defined(OS_ANDROID) int render_frame_id = render_frame_host->GetRoutingID(); GetWebContentsAndroid()->DidStartNavigationTransitionForFrame( render_frame_id); #endif } void WebContentsImpl::DidFailProvisionalLoadWithError( RenderFrameHostImpl* render_frame_host, const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) { GURL validated_url(params.url); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidFailProvisionalLoad(render_frame_host, validated_url, params.error_code, params.error_description)); } void WebContentsImpl::DidFailLoadWithError( RenderFrameHostImpl* render_frame_host, const GURL& url, int error_code, const base::string16& error_description) { FOR_EACH_OBSERVER( WebContentsObserver, observers_, DidFailLoad(render_frame_host, url, error_code, error_description)); } void WebContentsImpl::NotifyChangedNavigationState( InvalidateTypes changed_flags) { NotifyNavigationStateChanged(changed_flags); } void WebContentsImpl::AboutToNavigateRenderFrame( RenderFrameHostImpl* render_frame_host) { // Notify observers that we will navigate in this RenderView. RenderViewHost* render_view_host = render_frame_host->render_view_host(); FOR_EACH_OBSERVER( WebContentsObserver, observers_, AboutToNavigateRenderView(render_view_host)); } void WebContentsImpl::DidStartNavigationToPendingEntry( RenderFrameHostImpl* render_frame_host, const GURL& url, NavigationController::ReloadType reload_type) { // Notify observers about navigation. FOR_EACH_OBSERVER( WebContentsObserver, observers_, DidStartNavigationToPendingEntry(url, reload_type)); } void WebContentsImpl::RequestOpenURL(RenderFrameHostImpl* render_frame_host, const OpenURLParams& params) { int source_render_frame_id = render_frame_host->GetRoutingID(); WebContents* new_contents = OpenURL(params); if (new_contents) { // Notify observers. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidOpenRequestedURL(new_contents, params.url, params.referrer, params.disposition, params.transition, source_render_frame_id)); } } bool WebContentsImpl::ShouldPreserveAbortedURLs() { if (!delegate_) return false; return delegate_->ShouldPreserveAbortedURLs(this); } void WebContentsImpl::DidCommitProvisionalLoad( RenderFrameHostImpl* render_frame_host, const GURL& url, ui::PageTransition transition_type) { // Notify observers about the commit of the provisional load. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidCommitProvisionalLoadForFrame( render_frame_host, url, transition_type)); } void WebContentsImpl::DidNavigateMainFramePreCommit( bool navigation_is_within_page) { // Ensure fullscreen mode is exited before committing the navigation to a // different page. The next page will not start out assuming it is in // fullscreen mode. if (navigation_is_within_page) { // No page change? Then, the renderer and browser can remain in fullscreen. return; } if (IsFullscreenForCurrentTab()) GetRenderViewHost()->ExitFullscreen(); DCHECK(!IsFullscreenForCurrentTab()); } void WebContentsImpl::DidNavigateMainFramePostCommit( const LoadCommittedDetails& details, const FrameHostMsg_DidCommitProvisionalLoad_Params& params) { if (details.is_navigation_to_different_page()) { // Clear the status bubble. This is a workaround for a bug where WebKit // doesn't let us know that the cursor left an element during a // transition (this is also why the mouse cursor remains as a hand after // clicking on a link); see bugs 1184641 and 980803. We don't want to // clear the bubble when a user navigates to a named anchor in the same // page. UpdateTargetURL(GURL()); } if (!details.is_in_page) { // Once the main frame is navigated, we're no longer considered to have // displayed insecure content. displayed_insecure_content_ = false; SSLManager::NotifySSLInternalStateChanged( GetController().GetBrowserContext()); } // Notify observers about navigation. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidNavigateMainFrame(details, params)); if (delegate_) delegate_->DidNavigateMainFramePostCommit(this); view_->SetOverscrollControllerEnabled(CanOverscrollContent()); } void WebContentsImpl::DidNavigateAnyFramePostCommit( RenderFrameHostImpl* render_frame_host, const LoadCommittedDetails& details, const FrameHostMsg_DidCommitProvisionalLoad_Params& params) { // Now that something has committed, we don't need to track whether the // initial page has been accessed. has_accessed_initial_document_ = false; // If we navigate off the page, close all JavaScript dialogs. if (dialog_manager_ && !details.is_in_page) dialog_manager_->CancelActiveAndPendingDialogs(this); // Notify observers about navigation. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidNavigateAnyFrame(render_frame_host, details, params)); } void WebContentsImpl::SetMainFrameMimeType(const std::string& mime_type) { contents_mime_type_ = mime_type; } bool WebContentsImpl::CanOverscrollContent() const { // Disable overscroll when touch emulation is on. See crbug.com/369938. if (force_disable_overscroll_content_) return false; if (delegate_) return delegate_->CanOverscrollContent(); return false; } void WebContentsImpl::OnThemeColorChanged(SkColor theme_color) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidChangeThemeColor(theme_color)); } void WebContentsImpl::OnDidLoadResourceFromMemoryCache( const GURL& url, const std::string& security_info, const std::string& http_method, const std::string& mime_type, ResourceType resource_type) { base::StatsCounter cache("WebKit.CacheHit"); cache.Increment(); // Send out a notification that we loaded a resource from our memory cache. int cert_id = 0; net::CertStatus cert_status = 0; int security_bits = -1; int connection_status = 0; SignedCertificateTimestampIDStatusList signed_certificate_timestamp_ids; DeserializeSecurityInfo(security_info, &cert_id, &cert_status, &security_bits, &connection_status, &signed_certificate_timestamp_ids); // TODO(alcutter,eranm): Pass signed_certificate_timestamp_ids into details LoadFromMemoryCacheDetails details( url, GetRenderProcessHost()->GetID(), cert_id, cert_status, http_method, mime_type, resource_type); controller_.ssl_manager()->DidLoadFromMemoryCache(details); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidLoadResourceFromMemoryCache(details)); if (url.is_valid() && url.SchemeIsHTTPOrHTTPS()) { scoped_refptr request_context( resource_type == RESOURCE_TYPE_MEDIA ? GetBrowserContext()->GetMediaRequestContextForRenderProcess( GetRenderProcessHost()->GetID()) : GetBrowserContext()->GetRequestContextForRenderProcess( GetRenderProcessHost()->GetID())); BrowserThread::PostTask( BrowserThread::IO, FROM_HERE, base::Bind(&NotifyCacheOnIO, request_context, url, http_method)); } } void WebContentsImpl::OnDidDisplayInsecureContent() { RecordAction(base::UserMetricsAction("SSL.DisplayedInsecureContent")); displayed_insecure_content_ = true; SSLManager::NotifySSLInternalStateChanged( GetController().GetBrowserContext()); } void WebContentsImpl::OnDidRunInsecureContent( const std::string& security_origin, const GURL& target_url) { LOG(WARNING) << security_origin << " ran insecure content from " << target_url.possibly_invalid_spec(); RecordAction(base::UserMetricsAction("SSL.RanInsecureContent")); if (EndsWith(security_origin, kDotGoogleDotCom, false)) RecordAction(base::UserMetricsAction("SSL.RanInsecureContentGoogle")); controller_.ssl_manager()->DidRunInsecureContent(security_origin); displayed_insecure_content_ = true; SSLManager::NotifySSLInternalStateChanged( GetController().GetBrowserContext()); } void WebContentsImpl::OnDocumentLoadedInFrame() { CHECK(render_frame_message_source_); CHECK(!render_view_message_source_); RenderFrameHostImpl* rfh = static_cast(render_frame_message_source_); FOR_EACH_OBSERVER( WebContentsObserver, observers_, DocumentLoadedInFrame(rfh)); } void WebContentsImpl::OnDidFinishLoad( const GURL& url) { if (!render_frame_message_source_) { RecordAction(base::UserMetricsAction("BadMessageTerminate_RVD2")); GetRenderProcessHost()->ReceivedBadMessage(); return; } GURL validated_url(url); RenderProcessHost* render_process_host = render_frame_message_source_->GetProcess(); render_process_host->FilterURL(false, &validated_url); RenderFrameHostImpl* rfh = static_cast(render_frame_message_source_); FOR_EACH_OBSERVER( WebContentsObserver, observers_, DidFinishLoad(rfh, validated_url)); } void WebContentsImpl::OnDidStartLoading(bool to_different_document) { RenderFrameHostImpl* rfh = static_cast(render_frame_message_source_); int64 render_frame_id = rfh->frame_tree_node()->frame_tree_node_id(); // It is possible to get multiple calls to OnDidStartLoading that don't have // corresponding calls to OnDidStopLoading: // - With "swappedout://" URLs, this happens when a RenderView gets swapped // out for a cross-process navigation, and it turns into a placeholder for // one being rendered in a different process. // - Also, there might be more than one RenderFrameHost sharing the same // FrameTreeNode (and thus sharing its ID) each sending a start. // - But in the future, once clamy@ moves navigation network requests to the // browser process, there's a good chance that callbacks about starting and // stopping will all be handled by the browser. When that happens, there // should no longer be a start/stop call imbalance. TODO(avi): When this // future arrives, update this code to not allow this case. DCHECK_GE(loading_frames_in_progress_, 0); if (loading_progresses_.find(render_frame_id) == loading_progresses_.end()) { if (loading_frames_in_progress_ == 0) DidStartLoading(rfh, to_different_document); ++loading_frames_in_progress_; } loading_progresses_[render_frame_id] = kMinimumLoadingProgress; SendLoadProgressChanged(); } void WebContentsImpl::OnDidStopLoading() { RenderFrameHostImpl* rfh = static_cast(render_frame_message_source_); int64 render_frame_id = rfh->frame_tree_node()->frame_tree_node_id(); if (loading_progresses_.find(render_frame_id) != loading_progresses_.end()) { // Load stopped while we were still tracking load. Make sure we update // progress based on this frame's completion. loading_progresses_[render_frame_id] = 1.0; SendLoadProgressChanged(); // Then we clean-up our states. if (loading_total_progress_ == 1.0) ResetLoadProgressState(); } // TODO(japhet): This should be a DCHECK, but the pdf plugin sometimes // calls DidStopLoading() without a matching DidStartLoading(). if (loading_frames_in_progress_ == 0) return; --loading_frames_in_progress_; if (loading_frames_in_progress_ == 0) DidStopLoading(rfh); } void WebContentsImpl::OnDidChangeLoadProgress(double load_progress) { RenderFrameHostImpl* rfh = static_cast(render_frame_message_source_); int64 render_frame_id = rfh->frame_tree_node()->frame_tree_node_id(); loading_progresses_[render_frame_id] = load_progress; // We notify progress change immediately for the first and last updates. // Also, since the message loop may be pretty busy when a page is loaded, it // might not execute a posted task in a timely manner so we make sure to // immediately send progress report if enough time has passed. base::TimeDelta min_delay = base::TimeDelta::FromMilliseconds(kMinimumDelayBetweenLoadingUpdatesMS); if (load_progress == 1.0 || loading_last_progress_update_.is_null() || base::TimeTicks::Now() - loading_last_progress_update_ > min_delay) { // If there is a pending task to send progress, it is now obsolete. loading_weak_factory_.InvalidateWeakPtrs(); SendLoadProgressChanged(); if (loading_total_progress_ == 1.0) ResetLoadProgressState(); return; } if (loading_weak_factory_.HasWeakPtrs()) return; base::MessageLoop::current()->PostDelayedTask( FROM_HERE, base::Bind(&WebContentsImpl::SendLoadProgressChanged, loading_weak_factory_.GetWeakPtr()), min_delay); } void WebContentsImpl::OnGoToEntryAtOffset(int offset) { if (!delegate_ || delegate_->OnGoToEntryOffset(offset)) controller_.GoToOffset(offset); } void WebContentsImpl::OnUpdateZoomLimits(int minimum_percent, int maximum_percent) { minimum_zoom_percent_ = minimum_percent; maximum_zoom_percent_ = maximum_percent; } void WebContentsImpl::OnEnumerateDirectory(int request_id, const base::FilePath& path) { if (!delegate_) return; ChildProcessSecurityPolicyImpl* policy = ChildProcessSecurityPolicyImpl::GetInstance(); if (policy->CanReadFile(GetRenderProcessHost()->GetID(), path)) delegate_->EnumerateDirectory(this, request_id, path); } void WebContentsImpl::OnRegisterProtocolHandler(const std::string& protocol, const GURL& url, const base::string16& title, bool user_gesture) { if (!delegate_) return; ChildProcessSecurityPolicyImpl* policy = ChildProcessSecurityPolicyImpl::GetInstance(); if (policy->IsPseudoScheme(protocol)) return; delegate_->RegisterProtocolHandler(this, protocol, url, user_gesture); } void WebContentsImpl::OnUnregisterProtocolHandler(const std::string& protocol, const GURL& url, bool user_gesture) { if (!delegate_) return; ChildProcessSecurityPolicyImpl* policy = ChildProcessSecurityPolicyImpl::GetInstance(); if (policy->IsPseudoScheme(protocol)) return; delegate_->UnregisterProtocolHandler(this, protocol, url, user_gesture); } void WebContentsImpl::OnFindReply(int request_id, int number_of_matches, const gfx::Rect& selection_rect, int active_match_ordinal, bool final_update) { if (delegate_) { delegate_->FindReply(this, request_id, number_of_matches, selection_rect, active_match_ordinal, final_update); } } #if defined(OS_ANDROID) void WebContentsImpl::OnFindMatchRectsReply( int version, const std::vector& rects, const gfx::RectF& active_rect) { if (delegate_) delegate_->FindMatchRectsReply(this, version, rects, active_rect); } void WebContentsImpl::OnOpenDateTimeDialog( const ViewHostMsg_DateTimeDialogValue_Params& value) { date_time_chooser_->ShowDialog(ContentViewCore::FromWebContents(this), GetRenderViewHost(), value.dialog_type, value.dialog_value, value.minimum, value.maximum, value.step, value.suggestions); } #endif void WebContentsImpl::OnPepperPluginHung(int plugin_child_id, const base::FilePath& path, bool is_hung) { UMA_HISTOGRAM_COUNTS("Pepper.PluginHung", 1); FOR_EACH_OBSERVER(WebContentsObserver, observers_, PluginHungStatusChanged(plugin_child_id, path, is_hung)); } void WebContentsImpl::OnPluginCrashed(const base::FilePath& plugin_path, base::ProcessId plugin_pid) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, PluginCrashed(plugin_path, plugin_pid)); } void WebContentsImpl::OnDomOperationResponse(const std::string& json_string, int automation_id) { DomOperationNotificationDetails details(json_string, automation_id); NotificationService::current()->Notify( NOTIFICATION_DOM_OPERATION_RESPONSE, Source(this), Details(&details)); } void WebContentsImpl::OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy) { // Notify observers about navigation. FOR_EACH_OBSERVER(WebContentsObserver, observers_, AppCacheAccessed(manifest_url, blocked_by_policy)); } void WebContentsImpl::OnOpenColorChooser( int color_chooser_id, SkColor color, const std::vector& suggestions) { ColorChooser* new_color_chooser = delegate_ ? delegate_->OpenColorChooser(this, color, suggestions) : NULL; if (!new_color_chooser) return; if (color_chooser_info_.get()) color_chooser_info_->chooser->End(); color_chooser_info_.reset(new ColorChooserInfo( render_frame_message_source_->GetProcess()->GetID(), render_frame_message_source_->GetRoutingID(), new_color_chooser, color_chooser_id)); } void WebContentsImpl::OnEndColorChooser(int color_chooser_id) { if (color_chooser_info_ && color_chooser_id == color_chooser_info_->identifier) color_chooser_info_->chooser->End(); } void WebContentsImpl::OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color) { if (color_chooser_info_ && color_chooser_id == color_chooser_info_->identifier) color_chooser_info_->chooser->SetSelectedColor(color); } // This exists for render views that don't have a WebUI, but do have WebUI // bindings enabled. void WebContentsImpl::OnWebUISend(const GURL& source_url, const std::string& name, const base::ListValue& args) { if (delegate_) delegate_->WebUISend(this, source_url, name, args); } #if defined(ENABLE_PLUGINS) void WebContentsImpl::OnRequestPpapiBrokerPermission( int routing_id, const GURL& url, const base::FilePath& plugin_path) { if (!delegate_) { OnPpapiBrokerPermissionResult(routing_id, false); return; } if (!delegate_->RequestPpapiBrokerPermission( this, url, plugin_path, base::Bind(&WebContentsImpl::OnPpapiBrokerPermissionResult, base::Unretained(this), routing_id))) { NOTIMPLEMENTED(); OnPpapiBrokerPermissionResult(routing_id, false); } } void WebContentsImpl::OnPpapiBrokerPermissionResult(int routing_id, bool result) { Send(new ViewMsg_PpapiBrokerPermissionResult(routing_id, result)); } void WebContentsImpl::OnBrowserPluginMessage(const IPC::Message& message) { // This creates a BrowserPluginEmbedder, which handles all the BrowserPlugin // specific messages for this WebContents. This means that any message from // a BrowserPlugin prior to this will be ignored. // For more info, see comment above classes BrowserPluginEmbedder and // BrowserPluginGuest. CHECK(!browser_plugin_embedder_.get()); browser_plugin_embedder_.reset(BrowserPluginEmbedder::Create(this)); browser_plugin_embedder_->OnMessageReceived(message); } #endif void WebContentsImpl::OnDidDownloadImage( int id, int http_status_code, const GURL& image_url, const std::vector& bitmaps, const std::vector& original_bitmap_sizes) { if (bitmaps.size() != original_bitmap_sizes.size()) return; ImageDownloadMap::iterator iter = image_download_map_.find(id); if (iter == image_download_map_.end()) { // Currently WebContents notifies us of ANY downloads so that it is // possible to get here. return; } if (!iter->second.is_null()) { iter->second.Run( id, http_status_code, image_url, bitmaps, original_bitmap_sizes); } image_download_map_.erase(id); } void WebContentsImpl::OnUpdateFaviconURL( const std::vector& candidates) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidUpdateFaviconURL(candidates)); } void WebContentsImpl::CreateAudioPowerSaveBlocker() { // ChromeOS has its own way of handling power save blocks for media. #if !defined(OS_CHROMEOS) DCHECK(!audio_power_save_blocker_); audio_power_save_blocker_ = PowerSaveBlocker::Create( PowerSaveBlocker::kPowerSaveBlockPreventAppSuspension, "Playing Audio"); #endif } void WebContentsImpl::CreateVideoPowerSaveBlocker() { // ChromeOS has its own way of handling power save blocks for media. #if !defined(OS_CHROMEOS) DCHECK(!video_power_save_blocker_); DCHECK(!active_video_players_.empty()); video_power_save_blocker_ = PowerSaveBlocker::Create( PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep, "Playing Video"); #if defined(OS_ANDROID) static_cast(video_power_save_blocker_.get()) ->InitDisplaySleepBlocker(GetView()->GetNativeView()); #endif #endif } void WebContentsImpl::MaybeReleasePowerSaveBlockers() { // If there are no more audio players and we don't have audio stream // monitoring, release the audio power save blocker here instead of during // NotifyNavigationStateChanged(). if (active_audio_players_.empty() && !AudioStreamMonitor::monitoring_available()) { audio_power_save_blocker_.reset(); } // If there are no more video players, clear the video power save blocker. if (active_video_players_.empty()) video_power_save_blocker_.reset(); } void WebContentsImpl::OnMediaPlayingNotification(int64 player_cookie, bool has_video, bool has_audio, bool is_remote) { // Ignore the videos playing remotely and don't hold the wake lock for the // screen. if (is_remote) return; if (has_audio) { AddMediaPlayerEntry(player_cookie, &active_audio_players_); // If we don't have audio stream monitoring, allocate the audio power save // blocker here instead of during NotifyNavigationStateChanged(). if (!audio_power_save_blocker_ && !AudioStreamMonitor::monitoring_available()) { CreateAudioPowerSaveBlocker(); } } if (has_video) { AddMediaPlayerEntry(player_cookie, &active_video_players_); // If we're not hidden and have just created a player, create a blocker. if (!video_power_save_blocker_ && !IsHidden()) CreateVideoPowerSaveBlocker(); } } void WebContentsImpl::OnMediaPausedNotification(int64 player_cookie) { RemoveMediaPlayerEntry(player_cookie, &active_audio_players_); RemoveMediaPlayerEntry(player_cookie, &active_video_players_); MaybeReleasePowerSaveBlockers(); } void WebContentsImpl::OnFirstVisuallyNonEmptyPaint() { FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidFirstVisuallyNonEmptyPaint()); } void WebContentsImpl::DidChangeVisibleSSLState() { if (delegate_) delegate_->VisibleSSLStateChanged(this); } void WebContentsImpl::NotifyBeforeFormRepostWarningShow() { FOR_EACH_OBSERVER(WebContentsObserver, observers_, BeforeFormRepostWarningShow()); } void WebContentsImpl::ActivateAndShowRepostFormWarningDialog() { Activate(); if (delegate_) delegate_->ShowRepostFormWarningDialog(this); } bool WebContentsImpl::HasAccessedInitialDocument() { return has_accessed_initial_document_; } // Notifies the RenderWidgetHost instance about the fact that the page is // loading, or done loading. void WebContentsImpl::SetIsLoading(RenderViewHost* render_view_host, bool is_loading, bool to_different_document, LoadNotificationDetails* details) { if (is_loading == is_loading_) return; if (!is_loading) { load_state_ = net::LoadStateWithParam(net::LOAD_STATE_IDLE, base::string16()); load_state_host_.clear(); upload_size_ = 0; upload_position_ = 0; } GetRenderManager()->SetIsLoading(is_loading); is_loading_ = is_loading; waiting_for_response_ = is_loading; is_load_to_different_document_ = to_different_document; if (delegate_) delegate_->LoadingStateChanged(this, to_different_document); NotifyNavigationStateChanged(INVALIDATE_TYPE_LOAD); std::string url = (details ? details->url.possibly_invalid_spec() : "NULL"); if (is_loading) { TRACE_EVENT_ASYNC_BEGIN1("browser,navigation", "WebContentsImpl Loading", this, "URL", url); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidStartLoading(render_view_host)); } else { TRACE_EVENT_ASYNC_END1("browser,navigation", "WebContentsImpl Loading", this, "URL", url); FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidStopLoading(render_view_host)); } // TODO(avi): Remove. http://crbug.com/170921 int type = is_loading ? NOTIFICATION_LOAD_START : NOTIFICATION_LOAD_STOP; NotificationDetails det = NotificationService::NoDetails(); if (details) det = Details(details); NotificationService::current()->Notify( type, Source(&controller_), det); } void WebContentsImpl::SelectRange(const gfx::Point& start, const gfx::Point& end) { RenderFrameHost* focused_frame = GetFocusedFrame(); if (!focused_frame) return; focused_frame->Send( new InputMsg_SelectRange(focused_frame->GetRoutingID(), start, end)); } void WebContentsImpl::UpdateMaxPageIDIfNecessary(RenderViewHost* rvh) { // If we are creating a RVH for a restored controller, then we need to make // sure the RenderView starts with a next_page_id_ larger than the number // of restored entries. This must be called before the RenderView starts // navigating (to avoid a race between the browser updating max_page_id and // the renderer updating next_page_id_). Because of this, we only call this // from CreateRenderView and allow that to notify the RenderView for us. int max_restored_page_id = controller_.GetMaxRestoredPageID(); if (max_restored_page_id > GetMaxPageIDForSiteInstance(rvh->GetSiteInstance())) UpdateMaxPageIDForSiteInstance(rvh->GetSiteInstance(), max_restored_page_id); } bool WebContentsImpl::UpdateTitleForEntry(NavigationEntryImpl* entry, const base::string16& title) { // For file URLs without a title, use the pathname instead. In the case of a // synthesized title, we don't want the update to count toward the "one set // per page of the title to history." base::string16 final_title; bool explicit_set; if (entry && entry->GetURL().SchemeIsFile() && title.empty()) { final_title = base::UTF8ToUTF16(entry->GetURL().ExtractFileName()); explicit_set = false; // Don't count synthetic titles toward the set limit. } else { base::TrimWhitespace(title, base::TRIM_ALL, &final_title); explicit_set = true; } // If a page is created via window.open and never navigated, // there will be no navigation entry. In this situation, // |page_title_when_no_navigation_entry_| will be used for page title. if (entry) { if (final_title == entry->GetTitle()) return false; // Nothing changed, don't bother. entry->SetTitle(final_title); } else { if (page_title_when_no_navigation_entry_ == final_title) return false; // Nothing changed, don't bother. page_title_when_no_navigation_entry_ = final_title; } // Lastly, set the title for the view. view_->SetPageTitle(final_title); FOR_EACH_OBSERVER(WebContentsObserver, observers_, TitleWasSet(entry, explicit_set)); // TODO(avi): Remove. http://crbug.com/170921 std::pair details = std::make_pair(entry, explicit_set); NotificationService::current()->Notify( NOTIFICATION_WEB_CONTENTS_TITLE_UPDATED, Source(this), Details >(&details)); return true; } void WebContentsImpl::SendLoadProgressChanged() { loading_last_progress_update_ = base::TimeTicks::Now(); double progress = 0.0; int frame_count = 0; for (LoadingProgressMap::iterator it = loading_progresses_.begin(); it != loading_progresses_.end(); ++it) { progress += it->second; ++frame_count; } if (frame_count == 0) return; progress /= frame_count; DCHECK(progress <= 1.0); if (progress <= loading_total_progress_) return; loading_total_progress_ = progress; if (delegate_) delegate_->LoadProgressChanged(this, progress); } void WebContentsImpl::ResetLoadProgressState() { loading_progresses_.clear(); loading_total_progress_ = 0.0; loading_weak_factory_.InvalidateWeakPtrs(); loading_last_progress_update_ = base::TimeTicks(); } void WebContentsImpl::NotifyViewSwapped(RenderViewHost* old_host, RenderViewHost* new_host) { // After sending out a swap notification, we need to send a disconnect // notification so that clients that pick up a pointer to |this| can NULL the // pointer. See Bug 1230284. notify_disconnection_ = true; FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderViewHostChanged(old_host, new_host)); // TODO(avi): Remove. http://crbug.com/170921 std::pair details = std::make_pair(old_host, new_host); NotificationService::current()->Notify( NOTIFICATION_RENDER_VIEW_HOST_CHANGED, Source(this), Details >(&details)); // Ensure that the associated embedder gets cleared after a RenderViewHost // gets swapped, so we don't reuse the same embedder next time a // RenderViewHost is attached to this WebContents. RemoveBrowserPluginEmbedder(); } void WebContentsImpl::NotifyFrameSwapped(RenderFrameHost* old_host, RenderFrameHost* new_host) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameHostChanged(old_host, new_host)); } // TODO(avi): Remove this entire function because this notification is already // covered by two observer functions. http://crbug.com/170921 void WebContentsImpl::NotifyDisconnected() { if (!notify_disconnection_) return; notify_disconnection_ = false; NotificationService::current()->Notify( NOTIFICATION_WEB_CONTENTS_DISCONNECTED, Source(this), NotificationService::NoDetails()); } void WebContentsImpl::NotifyNavigationEntryCommitted( const LoadCommittedDetails& load_details) { FOR_EACH_OBSERVER( WebContentsObserver, observers_, NavigationEntryCommitted(load_details)); } bool WebContentsImpl::OnMessageReceived(RenderFrameHost* render_frame_host, const IPC::Message& message) { return OnMessageReceived(NULL, render_frame_host, message); } const GURL& WebContentsImpl::GetMainFrameLastCommittedURL() const { return GetLastCommittedURL(); } void WebContentsImpl::RenderFrameCreated(RenderFrameHost* render_frame_host) { // Note this is only for subframes, the notification for the main frame // happens in RenderViewCreated. FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameCreated(render_frame_host)); SetAccessibilityModeOnFrame(accessibility_mode_, render_frame_host); } void WebContentsImpl::RenderFrameDeleted(RenderFrameHost* render_frame_host) { ClearPowerSaveBlockers(render_frame_host); FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderFrameDeleted(render_frame_host)); } void WebContentsImpl::WorkerCrashed(RenderFrameHost* render_frame_host) { if (delegate_) delegate_->WorkerCrashed(this); } void WebContentsImpl::ShowContextMenu(RenderFrameHost* render_frame_host, const ContextMenuParams& params) { ContextMenuParams context_menu_params(params); // Allow WebContentsDelegates to handle the context menu operation first. if (GetBrowserPluginGuest()) { WebContentsViewGuest* view_guest = static_cast(GetView()); context_menu_params = view_guest->ConvertContextMenuParams(params); } if (delegate_ && delegate_->HandleContextMenu(context_menu_params)) return; render_view_host_delegate_view_->ShowContextMenu(render_frame_host, context_menu_params); } void WebContentsImpl::RunJavaScriptMessage( RenderFrameHost* render_frame_host, const base::string16& message, const base::string16& default_prompt, const GURL& frame_url, JavaScriptMessageType javascript_message_type, IPC::Message* reply_msg) { // Suppress JavaScript dialogs when requested. Also suppress messages when // showing an interstitial as it's shown over the previous page and we don't // want the hidden page's dialogs to interfere with the interstitial. bool suppress_this_message = static_cast(render_frame_host)->is_swapped_out() || ShowingInterstitialPage() || !delegate_ || delegate_->ShouldSuppressDialogs() || !delegate_->GetJavaScriptDialogManager(); if (!suppress_this_message) { std::string accept_lang = GetContentClient()->browser()-> GetAcceptLangs(GetBrowserContext()); dialog_manager_ = delegate_->GetJavaScriptDialogManager(); dialog_manager_->RunJavaScriptDialog( this, frame_url.GetOrigin(), accept_lang, javascript_message_type, message, default_prompt, base::Bind(&WebContentsImpl::OnDialogClosed, base::Unretained(this), render_frame_host->GetProcess()->GetID(), render_frame_host->GetRoutingID(), reply_msg, false), &suppress_this_message); } if (suppress_this_message) { // If we are suppressing messages, just reply as if the user immediately // pressed "Cancel", passing true to |dialog_was_suppressed|. OnDialogClosed(render_frame_host->GetProcess()->GetID(), render_frame_host->GetRoutingID(), reply_msg, true, false, base::string16()); } // OnDialogClosed (two lines up) may have caused deletion of this object (see // http://crbug.com/288961 ). The only safe thing to do here is return. } void WebContentsImpl::RunBeforeUnloadConfirm( RenderFrameHost* render_frame_host, const base::string16& message, bool is_reload, IPC::Message* reply_msg) { RenderFrameHostImpl* rfhi = static_cast(render_frame_host); if (delegate_) delegate_->WillRunBeforeUnloadConfirm(); bool suppress_this_message = rfhi->rfh_state() != RenderFrameHostImpl::STATE_DEFAULT || !delegate_ || delegate_->ShouldSuppressDialogs() || !delegate_->GetJavaScriptDialogManager(); if (suppress_this_message) { rfhi->JavaScriptDialogClosed(reply_msg, true, base::string16(), true); return; } is_showing_before_unload_dialog_ = true; dialog_manager_ = delegate_->GetJavaScriptDialogManager(); dialog_manager_->RunBeforeUnloadDialog( this, message, is_reload, base::Bind(&WebContentsImpl::OnDialogClosed, base::Unretained(this), render_frame_host->GetProcess()->GetID(), render_frame_host->GetRoutingID(), reply_msg, false)); } WebContents* WebContentsImpl::GetAsWebContents() { return this; } bool WebContentsImpl::IsNeverVisible() { if (!delegate_) return false; return delegate_->IsNeverVisible(this); } #if defined(OS_WIN) gfx::NativeViewAccessible WebContentsImpl::GetParentNativeViewAccessible() { return accessible_parent_; } #endif RenderViewHostDelegateView* WebContentsImpl::GetDelegateView() { return render_view_host_delegate_view_; } RendererPreferences WebContentsImpl::GetRendererPrefs( BrowserContext* browser_context) const { return renderer_preferences_; } gfx::Rect WebContentsImpl::GetRootWindowResizerRect() const { if (delegate_) return delegate_->GetRootWindowResizerRect(); return gfx::Rect(); } void WebContentsImpl::RemoveBrowserPluginEmbedder() { if (browser_plugin_embedder_) browser_plugin_embedder_.reset(); } void WebContentsImpl::RenderViewCreated(RenderViewHost* render_view_host) { // Don't send notifications if we are just creating a swapped-out RVH for // the opener chain. These won't be used for view-source or WebUI, so it's // ok to return early. if (!static_cast(render_view_host)->is_active()) return; if (delegate_) view_->SetOverscrollControllerEnabled(CanOverscrollContent()); NotificationService::current()->Notify( NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED, Source(this), Details(render_view_host)); // When we're creating views, we're still doing initial setup, so we always // use the pending Web UI rather than any possibly existing committed one. if (GetRenderManager()->pending_web_ui()) GetRenderManager()->pending_web_ui()->RenderViewCreated(render_view_host); NavigationEntry* entry = controller_.GetPendingEntry(); if (entry && entry->IsViewSourceMode()) { // Put the renderer in view source mode. render_view_host->Send( new ViewMsg_EnableViewSourceMode(render_view_host->GetRoutingID())); } view_->RenderViewCreated(render_view_host); FOR_EACH_OBSERVER( WebContentsObserver, observers_, RenderViewCreated(render_view_host)); // We tell the observers now instead of when the main RenderFrameHostImpl is // constructed because otherwise it would be too early (i.e. IPCs sent to the // frame would be dropped because it's not created yet). RenderFrameHost* main_frame = render_view_host->GetMainFrame(); FOR_EACH_OBSERVER( WebContentsObserver, observers_, RenderFrameCreated(main_frame)); SetAccessibilityModeOnFrame(accessibility_mode_, main_frame); DevToolsManager::GetInstance()->RenderViewCreated(this, render_view_host); } void WebContentsImpl::RenderViewReady(RenderViewHost* rvh) { if (rvh != GetRenderViewHost()) { // Don't notify the world, since this came from a renderer in the // background. return; } notify_disconnection_ = true; // TODO(avi): Remove. http://crbug.com/170921 NotificationService::current()->Notify( NOTIFICATION_WEB_CONTENTS_CONNECTED, Source(this), NotificationService::NoDetails()); bool was_crashed = IsCrashed(); SetIsCrashed(base::TERMINATION_STATUS_STILL_RUNNING, 0); // Restore the focus to the tab (otherwise the focus will be on the top // window). if (was_crashed && !FocusLocationBarByDefault() && (!delegate_ || delegate_->ShouldFocusPageAfterCrash())) { view_->Focus(); } FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderViewReady()); } void WebContentsImpl::RenderViewTerminated(RenderViewHost* rvh, base::TerminationStatus status, int error_code) { if (rvh != GetRenderViewHost()) { // The pending page's RenderViewHost is gone. return; } // Ensure fullscreen mode is exited in the |delegate_| since a crashed // renderer may not have made a clean exit. if (IsFullscreenForCurrentTab()) ToggleFullscreenMode(false); // Cancel any visible dialogs so they are not left dangling over the sad tab. if (dialog_manager_) dialog_manager_->CancelActiveAndPendingDialogs(this); if (delegate_) delegate_->HideValidationMessage(this); SetIsLoading(rvh, false, true, NULL); NotifyDisconnected(); SetIsCrashed(status, error_code); // Reset the loading progress. TODO(avi): What does it mean to have a // "renderer crash" when there is more than one renderer process serving a // webpage? Once this function is called at a more granular frame level, we // probably will need to more granularly reset the state here. ResetLoadProgressState(); loading_frames_in_progress_ = 0; FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderProcessGone(GetCrashedStatus())); } void WebContentsImpl::RenderViewDeleted(RenderViewHost* rvh) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, RenderViewDeleted(rvh)); } void WebContentsImpl::UpdateState(RenderViewHost* rvh, int32 page_id, const PageState& page_state) { // Ensure that this state update comes from either the active RVH or one of // the swapped out RVHs. We don't expect to hear from any other RVHs. // TODO(nasko): This should go through RenderFrameHost. // TODO(creis): We can't update state for cross-process subframes until we // have FrameNavigationEntries. Once we do, this should be a DCHECK. if (rvh != GetRenderViewHost() && !GetRenderManager()->IsRVHOnSwappedOutList( static_cast(rvh))) return; // We must be prepared to handle state updates for any page, these occur // when the user is scrolling and entering form data, as well as when we're // leaving a page, in which case our state may have already been moved to // the next page. The navigation controller will look up the appropriate // NavigationEntry and update it when it is notified via the delegate. int entry_index = controller_.GetEntryIndexWithPageID( rvh->GetSiteInstance(), page_id); if (entry_index < 0) return; NavigationEntry* entry = controller_.GetEntryAtIndex(entry_index); if (page_state == entry->GetPageState()) return; // Nothing to update. entry->SetPageState(page_state); controller_.NotifyEntryChanged(entry, entry_index); } void WebContentsImpl::UpdateTargetURL(const GURL& url) { if (delegate_) delegate_->UpdateTargetURL(this, url); } void WebContentsImpl::Close(RenderViewHost* rvh) { #if defined(OS_MACOSX) // The UI may be in an event-tracking loop, such as between the // mouse-down and mouse-up in text selection or a button click. // Defer the close until after tracking is complete, so that we // don't free objects out from under the UI. // TODO(shess): This could get more fine-grained. For instance, // closing a tab in another window while selecting text in the // current window's Omnibox should be just fine. if (view_->IsEventTracking()) { view_->CloseTabAfterEventTracking(); return; } #endif // Ignore this if it comes from a RenderViewHost that we aren't showing. if (delegate_ && rvh == GetRenderViewHost()) delegate_->CloseContents(this); } void WebContentsImpl::SwappedOut(RenderFrameHost* rfh) { if (delegate_ && rfh->GetRenderViewHost() == GetRenderViewHost()) delegate_->SwappedOut(this); } void WebContentsImpl::DidDeferAfterResponseStarted( const TransitionLayerData& transition_data) { #if defined(OS_ANDROID) GetWebContentsAndroid()->DidDeferAfterResponseStarted(transition_data); #endif } bool WebContentsImpl::WillHandleDeferAfterResponseStarted() { #if defined(OS_ANDROID) return GetWebContentsAndroid()->WillHandleDeferAfterResponseStarted(); #else return false; #endif } void WebContentsImpl::RequestMove(const gfx::Rect& new_bounds) { if (delegate_ && delegate_->IsPopupOrPanel(this)) delegate_->MoveContents(this, new_bounds); } void WebContentsImpl::DidStartLoading(RenderFrameHost* render_frame_host, bool to_different_document) { SetIsLoading(render_frame_host->GetRenderViewHost(), true, to_different_document, NULL); } void WebContentsImpl::DidStopLoading(RenderFrameHost* render_frame_host) { scoped_ptr details; // Use the last committed entry rather than the active one, in case a // pending entry has been created. NavigationEntry* entry = controller_.GetLastCommittedEntry(); Navigator* navigator = frame_tree_.root()->navigator(); // An entry may not exist for a stop when loading an initial blank page or // if an iframe injected by script into a blank page finishes loading. if (entry) { base::TimeDelta elapsed = base::TimeTicks::Now() - navigator->GetCurrentLoadStart(); details.reset(new LoadNotificationDetails( entry->GetVirtualURL(), entry->GetTransitionType(), elapsed, &controller_, controller_.GetCurrentEntryIndex())); } SetIsLoading(render_frame_host->GetRenderViewHost(), false, true, details.get()); } void WebContentsImpl::DidCancelLoading() { controller_.DiscardNonCommittedEntries(); // Update the URL display. NotifyNavigationStateChanged(INVALIDATE_TYPE_URL); } void WebContentsImpl::DidAccessInitialDocument() { has_accessed_initial_document_ = true; // We may have left a failed browser-initiated navigation in the address bar // to let the user edit it and try again. Clear it now that content might // show up underneath it. if (!IsLoading() && controller_.GetPendingEntry()) controller_.DiscardPendingEntry(); // Update the URL display. NotifyNavigationStateChanged(INVALIDATE_TYPE_URL); } void WebContentsImpl::DidDisownOpener(RenderFrameHost* render_frame_host) { // No action is necessary if the opener has already been cleared. if (!opener_) return; // Clear our opener so that future cross-process navigations don't have an // opener assigned. RemoveDestructionObserver(opener_); opener_ = NULL; // Notify all swapped out RenderViewHosts for this tab. This is important // in case we go back to them, or if another window in those processes tries // to access window.opener. GetRenderManager()->DidDisownOpener(render_frame_host); } void WebContentsImpl::DocumentOnLoadCompleted( RenderFrameHost* render_frame_host) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, DocumentOnLoadCompletedInMainFrame()); // TODO(avi): Remove. http://crbug.com/170921 NotificationService::current()->Notify( NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME, Source(this), NotificationService::NoDetails()); } void WebContentsImpl::UpdateTitle(RenderFrameHost* render_frame_host, int32 page_id, const base::string16& title, base::i18n::TextDirection title_direction) { RenderViewHost* rvh = render_frame_host->GetRenderViewHost(); // If we have a title, that's a pretty good indication that we've started // getting useful data. SetNotWaitingForResponse(); // Try to find the navigation entry, which might not be the current one. // For example, it might be from a pending RVH for the pending entry. NavigationEntryImpl* entry = controller_.GetEntryWithPageID( rvh->GetSiteInstance(), page_id); // We can handle title updates when we don't have an entry in // UpdateTitleForEntry, but only if the update is from the current RVH. // TODO(avi): Change to make decisions based on the RenderFrameHost. if (!entry && rvh != GetRenderViewHost()) return; // TODO(evan): make use of title_direction. // http://code.google.com/p/chromium/issues/detail?id=27094 if (!UpdateTitleForEntry(entry, title)) return; // Broadcast notifications when the UI should be updated. if (entry == controller_.GetEntryAtOffset(0)) NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE); } void WebContentsImpl::UpdateEncoding(RenderFrameHost* render_frame_host, const std::string& encoding) { SetEncoding(encoding); } void WebContentsImpl::DocumentAvailableInMainFrame( RenderViewHost* render_view_host) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, DocumentAvailableInMainFrame()); } void WebContentsImpl::RouteCloseEvent(RenderViewHost* rvh) { // Tell the active RenderViewHost to run unload handlers and close, as long // as the request came from a RenderViewHost in the same BrowsingInstance. // In most cases, we receive this from a swapped out RenderViewHost. // It is possible to receive it from one that has just been swapped in, // in which case we might as well deliver the message anyway. if (rvh->GetSiteInstance()->IsRelatedSiteInstance(GetSiteInstance())) GetRenderViewHost()->ClosePage(); } void WebContentsImpl::RouteMessageEvent( RenderViewHost* rvh, const ViewMsg_PostMessage_Params& params) { // Only deliver the message to the active RenderViewHost if the request // came from a RenderViewHost in the same BrowsingInstance or if this // WebContents is dedicated to a browser plugin guest. // Note: This check means that an embedder could theoretically receive a // postMessage from anyone (not just its own guests). However, this is // probably not a risk for apps since other pages won't have references // to App windows. if (!rvh->GetSiteInstance()->IsRelatedSiteInstance(GetSiteInstance()) && !GetBrowserPluginGuest() && !GetBrowserPluginEmbedder()) return; ViewMsg_PostMessage_Params new_params(params); if (!params.message_port_ids.empty()) { MessagePortMessageFilter* message_port_message_filter = static_cast(GetRenderProcessHost()) ->message_port_message_filter(); message_port_message_filter->UpdateMessagePortsWithNewRoutes( params.message_port_ids, &new_params.new_routing_ids); } // If there is a source_routing_id, translate it to the routing ID for // the equivalent swapped out RVH in the target process. If we need // to create a swapped out RVH for the source tab, we create its opener // chain as well, since those will also be accessible to the target page. if (new_params.source_routing_id != MSG_ROUTING_NONE) { // Try to look up the WebContents for the source page. WebContentsImpl* source_contents = NULL; RenderViewHostImpl* source_rvh = RenderViewHostImpl::FromID( rvh->GetProcess()->GetID(), params.source_routing_id); if (source_rvh) { source_contents = static_cast( source_rvh->GetDelegate()->GetAsWebContents()); } if (source_contents) { if (GetBrowserPluginGuest()) { // We create a swapped out RenderView for the embedder in the guest's // render process but we intentionally do not expose the embedder's // opener chain to it. new_params.source_routing_id = source_contents->CreateSwappedOutRenderView(GetSiteInstance()); } else { new_params.source_routing_id = source_contents->CreateOpenerRenderViews(GetSiteInstance()); } } else { // We couldn't find it, so don't pass a source frame. new_params.source_routing_id = MSG_ROUTING_NONE; } } // In most cases, we receive this from a swapped out RenderViewHost. // It is possible to receive it from one that has just been swapped in, // in which case we might as well deliver the message anyway. Send(new ViewMsg_PostMessageEvent(GetRoutingID(), new_params)); } bool WebContentsImpl::AddMessageToConsole(int32 level, const base::string16& message, int32 line_no, const base::string16& source_id) { if (!delegate_) return false; return delegate_->AddMessageToConsole(this, level, message, line_no, source_id); } WebPreferences WebContentsImpl::ComputeWebkitPrefs() { // We want to base the page config off of the actual URL, rather than the // virtual URL. // TODO(nasko): Investigate how to remove the GetActiveEntry usage here, // as it is deprecated and can be out of sync with GetRenderViewHost(). GURL url = controller_.GetActiveEntry() ? controller_.GetActiveEntry()->GetURL() : GURL::EmptyGURL(); return GetRenderManager()->current_host()->ComputeWebkitPrefs(url); } int WebContentsImpl::CreateSwappedOutRenderView( SiteInstance* instance) { return GetRenderManager()->CreateRenderFrame( instance, MSG_ROUTING_NONE, true, true, true); } void WebContentsImpl::OnUserGesture() { // Notify observers. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidGetUserGesture()); ResourceDispatcherHostImpl* rdh = ResourceDispatcherHostImpl::Get(); if (rdh) // NULL in unittests. rdh->OnUserGesture(this); } void WebContentsImpl::OnIgnoredUIEvent() { // Notify observers. FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidGetIgnoredUIEvent()); } void WebContentsImpl::RendererUnresponsive(RenderViewHost* render_view_host) { // Don't show hung renderer dialog for a swapped out RVH. if (render_view_host != GetRenderViewHost()) return; RenderViewHostImpl* rvhi = static_cast(render_view_host); RenderFrameHostImpl* rfhi = static_cast(rvhi->GetMainFrame()); // Ignore renderer unresponsive event if debugger is attached to the tab // since the event may be a result of the renderer sitting on a breakpoint. // See http://crbug.com/65458 if (DevToolsAgentHost::IsDebuggerAttached(this)) return; if (rfhi->is_waiting_for_beforeunload_ack() || rfhi->IsWaitingForUnloadACK()) { // Hang occurred while firing the beforeunload/unload handler. // Pretend the handler fired so tab closing continues as if it had. rvhi->set_sudden_termination_allowed(true); if (!GetRenderManager()->ShouldCloseTabOnUnresponsiveRenderer()) return; // If the tab hangs in the beforeunload/unload handler there's really // nothing we can do to recover. If the hang is in the beforeunload handler, // pretend the beforeunload listeners have all fired and allow the delegate // to continue closing; the user will not have the option of cancelling the // close. Otherwise, pretend the unload listeners have all fired and close // the tab. bool close = true; if (rfhi->is_waiting_for_beforeunload_ack() && delegate_) { delegate_->BeforeUnloadFired(this, true, &close); } if (close) Close(rvhi); return; } if (!GetRenderViewHostImpl() || !GetRenderViewHostImpl()->IsRenderViewLive()) return; if (delegate_) delegate_->RendererUnresponsive(this); } void WebContentsImpl::RendererResponsive(RenderViewHost* render_view_host) { if (delegate_) delegate_->RendererResponsive(this); } void WebContentsImpl::LoadStateChanged( const GURL& url, const net::LoadStateWithParam& load_state, uint64 upload_position, uint64 upload_size) { load_state_ = load_state; upload_position_ = upload_position; upload_size_ = upload_size; load_state_host_ = net::IDNToUnicode(url.host(), GetContentClient()->browser()->GetAcceptLangs( GetBrowserContext())); if (load_state_.state == net::LOAD_STATE_READING_RESPONSE) SetNotWaitingForResponse(); if (IsLoading()) { NotifyNavigationStateChanged(static_cast( INVALIDATE_TYPE_LOAD | INVALIDATE_TYPE_TAB)); } } void WebContentsImpl::BeforeUnloadFiredFromRenderManager( bool proceed, const base::TimeTicks& proceed_time, bool* proceed_to_fire_unload) { FOR_EACH_OBSERVER(WebContentsObserver, observers_, BeforeUnloadFired(proceed_time)); if (delegate_) delegate_->BeforeUnloadFired(this, proceed, proceed_to_fire_unload); // Note: |this| might be deleted at this point. } void WebContentsImpl::RenderProcessGoneFromRenderManager( RenderViewHost* render_view_host) { DCHECK(crashed_status_ != base::TERMINATION_STATUS_STILL_RUNNING); RenderViewTerminated(render_view_host, crashed_status_, crashed_error_code_); } void WebContentsImpl::UpdateRenderViewSizeForRenderManager() { // TODO(brettw) this is a hack. See WebContentsView::SizeContents. gfx::Size size = GetSizeForNewRenderView(); // 0x0 isn't a valid window size (minimal window size is 1x1) but it may be // here during container initialization and normal window size will be set // later. In case of tab duplication this resizing to 0x0 prevents setting // normal size later so just ignore it. if (!size.IsEmpty()) view_->SizeContents(size); } void WebContentsImpl::CancelModalDialogsForRenderManager() { // We need to cancel modal dialogs when doing a process swap, since the load // deferrer would prevent us from swapping out. if (dialog_manager_) dialog_manager_->CancelActiveAndPendingDialogs(this); } void WebContentsImpl::NotifySwappedFromRenderManager(RenderFrameHost* old_host, RenderFrameHost* new_host, bool is_main_frame) { if (is_main_frame) { NotifyViewSwapped(old_host ? old_host->GetRenderViewHost() : NULL, new_host->GetRenderViewHost()); // Make sure the visible RVH reflects the new delegate's preferences. if (delegate_) view_->SetOverscrollControllerEnabled(CanOverscrollContent()); view_->RenderViewSwappedIn(new_host->GetRenderViewHost()); } NotifyFrameSwapped(old_host, new_host); } int WebContentsImpl::CreateOpenerRenderViewsForRenderManager( SiteInstance* instance) { if (!opener_) return MSG_ROUTING_NONE; // Recursively create RenderViews for anything else in the opener chain. return opener_->CreateOpenerRenderViews(instance); } int WebContentsImpl::CreateOpenerRenderViews(SiteInstance* instance) { int opener_route_id = MSG_ROUTING_NONE; // If this tab has an opener, ensure it has a RenderView in the given // SiteInstance as well. if (opener_) opener_route_id = opener_->CreateOpenerRenderViews(instance); // If any of the renderers (current, pending, or swapped out) for this // WebContents has the same SiteInstance, use it. if (GetRenderManager()->current_host()->GetSiteInstance() == instance) return GetRenderManager()->current_host()->GetRoutingID(); if (GetRenderManager()->pending_render_view_host() && GetRenderManager()->pending_render_view_host()->GetSiteInstance() == instance) return GetRenderManager()->pending_render_view_host()->GetRoutingID(); RenderViewHostImpl* rvh = GetRenderManager()->GetSwappedOutRenderViewHost( instance); if (rvh) return rvh->GetRoutingID(); // Create a swapped out RenderView in the given SiteInstance if none exists, // setting its opener to the given route_id. Return the new view's route_id. return GetRenderManager()->CreateRenderFrame( instance, opener_route_id, true, true, true); } NavigationControllerImpl& WebContentsImpl::GetControllerForRenderManager() { return GetController(); } WebUIImpl* WebContentsImpl::CreateWebUIForRenderManager(const GURL& url) { return static_cast(CreateWebUI(url)); } NavigationEntry* WebContentsImpl::GetLastCommittedNavigationEntryForRenderManager() { return controller_.GetLastCommittedEntry(); } bool WebContentsImpl::CreateRenderViewForRenderManager( RenderViewHost* render_view_host, int opener_route_id, int proxy_routing_id, bool for_main_frame_navigation) { TRACE_EVENT0("browser,navigation", "WebContentsImpl::CreateRenderViewForRenderManager"); // Can be NULL during tests. RenderWidgetHostViewBase* rwh_view; // TODO(kenrb): RenderWidgetHostViewChildFrame special casing is temporary // until RenderWidgetHost is attached to RenderFrameHost. We need to special // case this because RWH is still a base class of RenderViewHost, and child // frame RWHVs are unique in that they do not have their own WebContents. if (!for_main_frame_navigation) { RenderWidgetHostViewChildFrame* rwh_view_child = new RenderWidgetHostViewChildFrame(render_view_host); rwh_view = rwh_view_child; } else { rwh_view = view_->CreateViewForWidget(render_view_host, false); } // Now that the RenderView has been created, we need to tell it its size. if (rwh_view) rwh_view->SetSize(GetSizeForNewRenderView()); // Make sure we use the correct starting page_id in the new RenderView. UpdateMaxPageIDIfNecessary(render_view_host); int32 max_page_id = GetMaxPageIDForSiteInstance(render_view_host->GetSiteInstance()); if (!static_cast( render_view_host)->CreateRenderView(base::string16(), opener_route_id, proxy_routing_id, max_page_id, created_with_opener_)) { return false; } #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) // Force a ViewMsg_Resize to be sent, needed to make plugins show up on // linux. See crbug.com/83941. if (rwh_view) { if (RenderWidgetHost* render_widget_host = rwh_view->GetRenderWidgetHost()) render_widget_host->WasResized(); } #endif return true; } bool WebContentsImpl::CreateRenderFrameForRenderManager( RenderFrameHost* render_frame_host, int parent_routing_id) { TRACE_EVENT0("browser,navigation", "WebContentsImpl::CreateRenderFrameForRenderManager"); RenderFrameHostImpl* rfh = static_cast(render_frame_host); if (!rfh->CreateRenderFrame(parent_routing_id)) return false; // TODO(nasko): When RenderWidgetHost is owned by RenderFrameHost, the passed // RenderFrameHost will have to be associated with the appropriate // RenderWidgetHostView or a new one should be created here. return true; } #if defined(OS_ANDROID) base::android::ScopedJavaLocalRef WebContentsImpl::GetJavaWebContents() { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); return GetWebContentsAndroid()->GetJavaObject(); } WebContentsAndroid* WebContentsImpl::GetWebContentsAndroid() { WebContentsAndroid* web_contents_android = static_cast(GetUserData(kWebContentsAndroidKey)); if (!web_contents_android) { web_contents_android = new WebContentsAndroid(this); SetUserData(kWebContentsAndroidKey, web_contents_android); } return web_contents_android; } bool WebContentsImpl::CreateRenderViewForInitialEmptyDocument() { return CreateRenderViewForRenderManager(GetRenderViewHost(), MSG_ROUTING_NONE, MSG_ROUTING_NONE, true); } #elif defined(OS_MACOSX) void WebContentsImpl::SetAllowOtherViews(bool allow) { view_->SetAllowOtherViews(allow); } bool WebContentsImpl::GetAllowOtherViews() { return view_->GetAllowOtherViews(); } #endif void WebContentsImpl::OnDialogClosed(int render_process_id, int render_frame_id, IPC::Message* reply_msg, bool dialog_was_suppressed, bool success, const base::string16& user_input) { RenderFrameHostImpl* rfh = RenderFrameHostImpl::FromID(render_process_id, render_frame_id); last_dialog_suppressed_ = dialog_was_suppressed; if (is_showing_before_unload_dialog_ && !success) { // If a beforeunload dialog is canceled, we need to stop the throbber from // spinning, since we forced it to start spinning in Navigate. if (rfh) DidStopLoading(rfh); controller_.DiscardNonCommittedEntries(); FOR_EACH_OBSERVER(WebContentsObserver, observers_, BeforeUnloadDialogCancelled()); } is_showing_before_unload_dialog_ = false; if (rfh) { rfh->JavaScriptDialogClosed(reply_msg, success, user_input, dialog_was_suppressed); } else { // Don't leak the sync IPC reply if the RFH or process is gone. delete reply_msg; } } void WebContentsImpl::SetEncoding(const std::string& encoding) { if (encoding == last_reported_encoding_) return; last_reported_encoding_ = encoding; canonical_encoding_ = GetContentClient()->browser()-> GetCanonicalEncodingNameByAliasName(encoding); } bool WebContentsImpl::IsHidden() { return capturer_count_ == 0 && !should_normally_be_visible_; } RenderFrameHostManager* WebContentsImpl::GetRenderManager() const { return frame_tree_.root()->render_manager(); } RenderViewHostImpl* WebContentsImpl::GetRenderViewHostImpl() { return static_cast(GetRenderViewHost()); } BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() const { return browser_plugin_guest_.get(); } void WebContentsImpl::SetBrowserPluginGuest(BrowserPluginGuest* guest) { CHECK(!browser_plugin_guest_); browser_plugin_guest_.reset(guest); } BrowserPluginEmbedder* WebContentsImpl::GetBrowserPluginEmbedder() const { return browser_plugin_embedder_.get(); } void WebContentsImpl::ClearPowerSaveBlockers( RenderFrameHost* render_frame_host) { RemoveAllMediaPlayerEntries(render_frame_host, &active_audio_players_); RemoveAllMediaPlayerEntries(render_frame_host, &active_video_players_); MaybeReleasePowerSaveBlockers(); } void WebContentsImpl::ClearAllPowerSaveBlockers() { active_audio_players_.clear(); active_video_players_.clear(); audio_power_save_blocker_.reset(); video_power_save_blocker_.reset(); } gfx::Size WebContentsImpl::GetSizeForNewRenderView() { gfx::Size size; if (delegate_) size = delegate_->GetSizeForNewRenderView(this); if (size.IsEmpty()) size = GetContainerBounds().size(); return size; } void WebContentsImpl::OnFrameRemoved(RenderFrameHost* render_frame_host) { FOR_EACH_OBSERVER( WebContentsObserver, observers_, FrameDetached(render_frame_host)); } void WebContentsImpl::OnPreferredSizeChanged(const gfx::Size& old_size) { if (!delegate_) return; const gfx::Size new_size = GetPreferredSize(); if (new_size != old_size) delegate_->UpdatePreferredSize(this, new_size); } void WebContentsImpl::AddMediaPlayerEntry(int64 player_cookie, ActiveMediaPlayerMap* player_map) { const uintptr_t key = reinterpret_cast(render_frame_message_source_); DCHECK(std::find((*player_map)[key].begin(), (*player_map)[key].end(), player_cookie) == (*player_map)[key].end()); (*player_map)[key].push_back(player_cookie); } void WebContentsImpl::RemoveMediaPlayerEntry(int64 player_cookie, ActiveMediaPlayerMap* player_map) { const uintptr_t key = reinterpret_cast(render_frame_message_source_); ActiveMediaPlayerMap::iterator it = player_map->find(key); if (it == player_map->end()) return; // Remove the player. PlayerList::iterator player_it = std::find(it->second.begin(), it->second.end(), player_cookie); if (player_it != it->second.end()) it->second.erase(player_it); // If there are no players left, remove the map entry. if (it->second.empty()) player_map->erase(it); } void WebContentsImpl::RemoveAllMediaPlayerEntries( RenderFrameHost* render_frame_host, ActiveMediaPlayerMap* player_map) { ActiveMediaPlayerMap::iterator it = player_map->find(reinterpret_cast(render_frame_host)); if (it == player_map->end()) return; player_map->erase(it); } void WebContentsImpl::ResumeResponseDeferredAtStart() { FrameTreeNode* node = frame_tree_.root(); node->render_manager()->ResumeResponseDeferredAtStart(); } void WebContentsImpl::SetForceDisableOverscrollContent(bool force_disable) { force_disable_overscroll_content_ = force_disable; if (view_) view_->SetOverscrollControllerEnabled(CanOverscrollContent()); } } // namespace content