// 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/renderer/render_view_impl.h" #include #include #include "base/bind.h" #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/compiler_specific.h" #include "base/debug/trace_event.h" #include "base/json/json_reader.h" #include "base/json/json_writer.h" #include "base/lazy_instance.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop_proxy.h" #include "base/metrics/histogram.h" #include "base/path_service.h" #include "base/process_util.h" #include "base/string_number_conversions.h" #include "base/string_piece.h" #include "base/string_split.h" #include "base/string_util.h" #include "base/sys_string_conversions.h" #include "base/time.h" #include "base/utf_string_conversions.h" #include "cc/output_surface.h" #include "cc/switches.h" #include "content/common/appcache/appcache_dispatcher.h" #include "content/common/child_thread.h" #include "content/common/clipboard_messages.h" #include "content/common/content_constants_internal.h" #include "content/common/database_messages.h" #include "content/common/drag_messages.h" #include "content/common/fileapi/file_system_dispatcher.h" #include "content/common/fileapi/webfilesystem_callback_dispatcher.h" #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" #include "content/common/intents_messages.h" #include "content/common/java_bridge_messages.h" #include "content/common/pepper_messages.h" #include "content/common/pepper_plugin_registry.h" #include "content/common/quota_dispatcher.h" #include "content/common/request_extra_data.h" #include "content/common/socket_stream_handle_data.h" #include "content/common/ssl_status_serialization.h" #include "content/common/view_messages.h" #include "content/common/webmessageportchannel_impl.h" #include "content/public/common/bindings_policy.h" #include "content/public/common/content_client.h" #include "content/public/common/content_constants.h" #include "content/public/common/content_switches.h" #include "content/public/common/context_menu_params.h" #include "content/public/common/file_chooser_params.h" #include "content/public/common/ssl_status.h" #include "content/public/common/three_d_api_types.h" #include "content/public/common/url_constants.h" #include "content/public/renderer/content_renderer_client.h" #include "content/public/renderer/context_menu_client.h" #include "content/public/renderer/document_state.h" #include "content/public/renderer/navigation_state.h" #include "content/public/renderer/password_form_conversion_utils.h" #include "content/public/renderer/render_view_observer.h" #include "content/public/renderer/render_view_visitor.h" #include "content/renderer/browser_plugin/browser_plugin.h" #include "content/renderer/browser_plugin/browser_plugin_manager.h" #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" #include "content/renderer/device_orientation_dispatcher.h" #include "content/renderer/devtools_agent.h" #include "content/renderer/disambiguation_popup_helper.h" #include "content/renderer/dom_automation_controller.h" #include "content/renderer/dom_storage/webstoragenamespace_impl.h" #include "content/renderer/do_not_track_bindings.h" #include "content/renderer/external_popup_menu.h" #include "content/renderer/favicon_helper.h" #include "content/renderer/geolocation_dispatcher.h" #include "content/renderer/gpu/compositor_thread.h" #include "content/renderer/gpu/compositor_output_surface.h" #include "content/renderer/gpu/compositor_software_output_device_gl_adapter.h" #include "content/renderer/idle_user_detector.h" #include "content/renderer/input_tag_speech_dispatcher.h" #include "content/renderer/java/java_bridge_dispatcher.h" #include "content/renderer/load_progress_tracker.h" #include "content/renderer/media/media_stream_dependency_factory.h" #include "content/renderer/media/media_stream_dispatcher.h" #include "content/renderer/media/media_stream_impl.h" #include "content/renderer/media/render_audiosourceprovider.h" #include "content/renderer/media/render_media_log.h" #include "content/renderer/media/renderer_gpu_video_decoder_factories.h" #include "content/renderer/media/rtc_peer_connection_handler.h" #include "content/renderer/mhtml_generator.h" #include "content/renderer/notification_provider.h" #include "content/renderer/pepper/pepper_plugin_delegate_impl.h" #include "content/renderer/plugin_channel_host.h" #include "content/renderer/render_process.h" #include "content/renderer/render_thread_impl.h" #include "content/renderer/render_view_impl_params.h" #include "content/renderer/render_view_mouse_lock_dispatcher.h" #include "content/renderer/render_widget_fullscreen_pepper.h" #include "content/renderer/renderer_accessibility.h" #include "content/renderer/renderer_accessibility_complete.h" #include "content/renderer/renderer_accessibility_focus_only.h" #include "content/renderer/renderer_date_time_picker.h" #include "content/renderer/renderer_webapplicationcachehost_impl.h" #include "content/renderer/renderer_webcolorchooser_impl.h" #include "content/renderer/speech_recognition_dispatcher.h" #include "content/renderer/text_input_client_observer.h" #include "content/renderer/v8_value_converter_impl.h" #include "content/renderer/web_intents_host.h" #include "content/renderer/web_ui_extension.h" #include "content/renderer/web_ui_extension_data.h" #include "content/renderer/webplugin_delegate_proxy.h" #include "content/renderer/websharedworker_proxy.h" #include "media/base/filter_collection.h" #include "media/base/media_switches.h" #include "media/base/message_loop_factory.h" #include "media/filters/audio_renderer_impl.h" #include "media/filters/gpu_video_decoder.h" #include "net/base/data_url.h" #include "net/base/escape.h" #include "net/base/net_errors.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "net/http/http_util.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObject.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCompletion.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserParams.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileChooserParams.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallbacks.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebHelperPlugin.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIntent.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIntentRequest.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIntentServiceInfo.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebMessagePortChannel.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebNodeList.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializer.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginAction.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebRange.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSearchableFormData.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageQuotaCallbacks.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebUserMediaClient.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebWindowFeatures.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebDragData.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsContext3D.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebHTTPBody.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebImage.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSocketStreamHandle.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRequest.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLResponse.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/base/dialogs/selected_file_info.h" #include "ui/base/ui_base_switches.h" #include "ui/gfx/native_widget_types.h" #include "ui/gfx/point.h" #include "ui/gfx/rect.h" #include "ui/gfx/size_conversions.h" #include "v8/include/v8.h" #include "webkit/appcache/web_application_cache_host_impl.h" #include "webkit/base/file_path_string_conversions.h" #include "webkit/dom_storage/dom_storage_types.h" #include "webkit/glue/alt_error_page_resource_fetcher.h" #include "webkit/glue/dom_operations.h" #include "webkit/glue/glue_serialize.h" #include "webkit/glue/web_intent_service_data.h" #include "webkit/glue/webdropdata.h" #include "webkit/glue/webkit_constants.h" #include "webkit/glue/webkit_glue.h" #include "webkit/glue/weburlresponse_extradata_impl.h" #include "webkit/gpu/webgraphicscontext3d_in_process_impl.h" #include "webkit/media/webmediaplayer_impl.h" #include "webkit/media/webmediaplayer_ms.h" #include "webkit/plugins/npapi/plugin_list.h" #include "webkit/plugins/npapi/webplugin_delegate.h" #include "webkit/plugins/npapi/webplugin_delegate_impl.h" #include "webkit/plugins/npapi/webplugin_impl.h" #if defined(OS_ANDROID) #include "content/common/android/device_info.h" #include "content/renderer/android/address_detector.h" #include "content/renderer/android/content_detector.h" #include "content/renderer/android/email_detector.h" #include "content/renderer/android/phone_number_detector.h" #include "content/renderer/media/stream_texture_factory_impl_android.h" #include "content/renderer/media/webmediaplayer_proxy_impl_android.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebHitTestResult.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFloatPoint.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFloatRect.h" #include "ui/gfx/rect_f.h" #include "webkit/media/android/media_player_bridge_manager_impl.h" #include "webkit/media/android/webmediaplayer_android.h" #include "webkit/media/android/webmediaplayer_impl_android.h" #include "webkit/media/android/webmediaplayer_in_process_android.h" #include "webkit/media/android/webmediaplayer_manager_android.h" #elif defined(OS_WIN) // TODO(port): these files are currently Windows only because they concern: // * theming #include "ui/native_theme/native_theme_win.h" #elif defined(USE_X11) #include "third_party/WebKit/Source/WebKit/chromium/public/default/WebRenderTheme.h" #include "ui/native_theme/native_theme.h" #elif defined(OS_MACOSX) #include "skia/ext/skia_utils_mac.h" #endif using WebKit::WebAccessibilityNotification; using WebKit::WebAccessibilityObject; using WebKit::WebApplicationCacheHost; using WebKit::WebApplicationCacheHostClient; using WebKit::WebCString; using WebKit::WebColor; using WebKit::WebColorName; using WebKit::WebConsoleMessage; using WebKit::WebContextMenuData; using WebKit::WebCookieJar; using WebKit::WebData; using WebKit::WebDataSource; using WebKit::WebDocument; using WebKit::WebDOMEvent; using WebKit::WebDOMMessageEvent; using WebKit::WebDragData; using WebKit::WebDragOperation; using WebKit::WebDragOperationsMask; using WebKit::WebEditingAction; using WebKit::WebElement; using WebKit::WebExternalPopupMenu; using WebKit::WebExternalPopupMenuClient; using WebKit::WebFileChooserCompletion; using WebKit::WebFileSystem; using WebKit::WebFileSystemCallbacks; using WebKit::WebFindOptions; using WebKit::WebFormControlElement; using WebKit::WebFormElement; using WebKit::WebFrame; using WebKit::WebGestureEvent; using WebKit::WebGraphicsContext3D; using WebKit::WebHistoryItem; using WebKit::WebHTTPBody; using WebKit::WebIconURL; using WebKit::WebImage; using WebKit::WebInputElement; using WebKit::WebInputEvent; using WebKit::WebIntentRequest; using WebKit::WebIntentServiceInfo; using WebKit::WebMediaPlayer; using WebKit::WebMediaPlayerAction; using WebKit::WebMediaPlayerClient; using WebKit::WebMouseEvent; using WebKit::WebNavigationPolicy; using WebKit::WebNavigationType; using WebKit::WebNode; using WebKit::WebPageSerializer; using WebKit::WebPageSerializerClient; using WebKit::WebPeerConnection00Handler; using WebKit::WebPeerConnection00HandlerClient; using WebKit::WebPeerConnectionHandler; using WebKit::WebPeerConnectionHandlerClient; using WebKit::WebPlugin; using WebKit::WebPluginAction; using WebKit::WebPluginContainer; using WebKit::WebPluginDocument; using WebKit::WebPluginParams; using WebKit::WebPoint; using WebKit::WebPopupMenuInfo; using WebKit::WebRange; using WebKit::WebRect; using WebKit::WebReferrerPolicy; using WebKit::WebScriptSource; using WebKit::WebSearchableFormData; using WebKit::WebSecurityOrigin; using WebKit::WebSecurityPolicy; using WebKit::WebSerializedScriptValue; using WebKit::WebSettings; using WebKit::WebSharedWorker; using WebKit::WebSize; using WebKit::WebSocketStreamHandle; using WebKit::WebStorageNamespace; using WebKit::WebStorageQuotaCallbacks; using WebKit::WebStorageQuotaError; using WebKit::WebStorageQuotaType; using WebKit::WebString; using WebKit::WebTextAffinity; using WebKit::WebTextDirection; using WebKit::WebTouchEvent; using WebKit::WebURL; using WebKit::WebURLError; using WebKit::WebURLRequest; using WebKit::WebURLResponse; using WebKit::WebVector; using WebKit::WebView; using WebKit::WebWidget; using WebKit::WebWindowFeatures; using appcache::WebApplicationCacheHostImpl; using base::Time; using base::TimeDelta; using webkit_glue::AltErrorPageResourceFetcher; using webkit_glue::ResourceFetcher; using webkit_glue::WebPreferences; using webkit_glue::WebURLResponseExtraDataImpl; #if defined(OS_ANDROID) using WebKit::WebContentDetectionResult; using WebKit::WebFloatPoint; using WebKit::WebFloatRect; using WebKit::WebHitTestResult; #endif namespace content { //----------------------------------------------------------------------------- typedef std::map ViewMap; static base::LazyInstance g_view_map = LAZY_INSTANCE_INITIALIZER; typedef std::map RoutingIDViewMap; static base::LazyInstance g_routing_id_view_map = LAZY_INSTANCE_INITIALIZER; // Time, in seconds, we delay before sending content state changes (such as form // state and scroll position) to the browser. We delay sending changes to avoid // spamming the browser. // To avoid having tab/session restore require sending a message to get the // current content state during tab closing we use a shorter timeout for the // foreground renderer. This means there is a small window of time from which // content state is modified and not sent to session restore, but this is // better than having to wake up all renderers during shutdown. static const int kDelaySecondsForContentStateSyncHidden = 5; static const int kDelaySecondsForContentStateSync = 1; static const size_t kExtraCharsBeforeAndAfterSelection = 100; // The maximum number of popups that can be spawned from one page. static const int kMaximumNumberOfUnacknowledgedPopups = 25; static const float kScalingIncrement = 0.1f; static const float kScalingIncrementForGesture = 0.01f; #if defined(OS_ANDROID) // Delay between tapping in content and launching the associated android intent. // Used to allow users see what has been recognized as content. static const size_t kContentIntentDelayMilliseconds = 700; #endif static RenderViewImpl* (*g_create_render_view_impl)(RenderViewImplParams*) = NULL; static WebKit::WebFrame* FindFrameByID(WebKit::WebFrame* root, int frame_id) { for (WebFrame* frame = root; frame; frame = frame->traverseNext(false)) { if (frame->identifier() == frame_id) return frame; } return NULL; } static void GetRedirectChain(WebDataSource* ds, std::vector* result) { // Replace any occurrences of swappedout:// with about:blank. const WebURL& blank_url = GURL(chrome::kAboutBlankURL); WebVector urls; ds->redirectChain(urls); result->reserve(urls.size()); for (size_t i = 0; i < urls.size(); ++i) { if (urls[i] != GURL(kSwappedOutURL)) result->push_back(urls[i]); else result->push_back(blank_url); } } // If |data_source| is non-null and has a DocumentState associated with it, // the AltErrorPageResourceFetcher is reset. static void StopAltErrorPageFetcher(WebDataSource* data_source) { if (data_source) { DocumentState* document_state = DocumentState::FromDataSource(data_source); if (document_state) document_state->set_alt_error_page_fetcher(NULL); } } static bool IsReload(const ViewMsg_Navigate_Params& params) { return params.navigation_type == ViewMsg_Navigate_Type::RELOAD || params.navigation_type == ViewMsg_Navigate_Type::RELOAD_IGNORING_CACHE || params.navigation_type == ViewMsg_Navigate_Type::RELOAD_ORIGINAL_REQUEST_URL; } static WebReferrerPolicy GetReferrerPolicyFromRequest( WebFrame* frame, const WebURLRequest& request) { return request.extraData() ? static_cast(request.extraData())->referrer_policy() : frame->document().referrerPolicy(); } static WebURLResponseExtraDataImpl* GetExtraDataFromResponse( const WebURLResponse& response) { return static_cast( response.extraData()); } NOINLINE static void CrashIntentionally() { // NOTE(shess): Crash directly rather than using NOTREACHED() so // that the signature is easier to triage in crash reports. volatile int* zero = NULL; *zero = 0; } static void MaybeHandleDebugURL(const GURL& url) { if (!url.SchemeIs(chrome::kChromeUIScheme)) return; if (url == GURL(chrome::kChromeUICrashURL)) { CrashIntentionally(); } else if (url == GURL(chrome::kChromeUIKillURL)) { base::KillProcess(base::GetCurrentProcessHandle(), 1, false); } else if (url == GURL(chrome::kChromeUIHangURL)) { for (;;) { base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1)); } } else if (url == GURL(kChromeUIShorthangURL)) { base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(20)); } } // Returns false unless this is a top-level navigation. static bool IsTopLevelNavigation(WebFrame* frame) { return frame->parent() == NULL; } // Returns false unless this is a top-level navigation that crosses origins. static bool IsNonLocalTopLevelNavigation(const GURL& url, WebFrame* frame, WebNavigationType type) { if (!IsTopLevelNavigation(frame)) return false; // Navigations initiated within Webkit are not sent out to the external host // in the following cases. // 1. The url scheme is not http/https // 2. The origin of the url and the opener is the same in which case the // opener relationship is maintained. // 3. Reloads/form submits/back forward navigations if (!url.SchemeIs(chrome::kHttpScheme) && !url.SchemeIs(chrome::kHttpsScheme)) return false; // Not interested in reloads/form submits/resubmits/back forward navigations. if (type != WebKit::WebNavigationTypeReload && type != WebKit::WebNavigationTypeFormSubmitted && type != WebKit::WebNavigationTypeFormResubmitted && type != WebKit::WebNavigationTypeBackForward) { // The opener relationship between the new window and the parent allows the // new window to script the parent and vice versa. This is not allowed if // the origins of the two domains are different. This can be treated as a // top level navigation and routed back to the host. WebKit::WebFrame* opener = frame->opener(); if (!opener) { return true; } if (url.GetOrigin() != GURL(opener->document().url()).GetOrigin()) return true; } return false; } static void NotifyTimezoneChange(WebKit::WebFrame* frame) { v8::HandleScope handle_scope; v8::Context::Scope context_scope(frame->mainWorldScriptContext()); v8::Date::DateTimeConfigurationChangeNotification(); WebKit::WebFrame* child = frame->firstChild(); for (; child; child = child->nextSibling()) NotifyTimezoneChange(child); } /////////////////////////////////////////////////////////////////////////////// struct RenderViewImpl::PendingFileChooser { PendingFileChooser(const FileChooserParams& p, WebFileChooserCompletion* c) : params(p), completion(c) { } FileChooserParams params; WebFileChooserCompletion* completion; // MAY BE NULL to skip callback. }; namespace { class WebWidgetLockTarget : public MouseLockDispatcher::LockTarget { public: explicit WebWidgetLockTarget(WebKit::WebWidget* webwidget) : webwidget_(webwidget) {} virtual void OnLockMouseACK(bool succeeded) OVERRIDE { if (succeeded) webwidget_->didAcquirePointerLock(); else webwidget_->didNotAcquirePointerLock(); } virtual void OnMouseLockLost() OVERRIDE { webwidget_->didLosePointerLock(); } virtual bool HandleMouseLockedInputEvent( const WebKit::WebMouseEvent &event) OVERRIDE { // The WebWidget handles mouse lock in WebKit's handleInputEvent(). return false; } private: WebKit::WebWidget* webwidget_; }; int64 ExtractPostId(const WebHistoryItem& item) { if (item.isNull()) return -1; if (item.httpBody().isNull()) return -1; return item.httpBody().identifier(); } } // namespace RenderViewImpl::RenderViewImpl(RenderViewImplParams* params) : RenderWidget(WebKit::WebPopupTypeNone, params->screen_info, params->swapped_out), webkit_preferences_(params->webkit_prefs), send_content_state_immediately_(false), enabled_bindings_(0), send_preferred_size_changes_(false), is_loading_(false), navigation_gesture_(NavigationGestureUnknown), opened_by_user_gesture_(true), opener_suppressed_(false), page_id_(-1), last_page_id_sent_to_browser_(-1), next_page_id_(params->next_page_id), history_list_offset_(-1), history_list_length_(0), target_url_status_(TARGET_NONE), selection_text_offset_(0), cached_is_main_frame_pinned_to_left_(false), cached_is_main_frame_pinned_to_right_(false), cached_has_main_frame_horizontal_scrollbar_(false), cached_has_main_frame_vertical_scrollbar_(false), ALLOW_THIS_IN_INITIALIZER_LIST(cookie_jar_(this)), geolocation_dispatcher_(NULL), input_tag_speech_dispatcher_(NULL), speech_recognition_dispatcher_(NULL), device_orientation_dispatcher_(NULL), media_stream_dispatcher_(NULL), browser_plugin_manager_(NULL), media_stream_impl_(NULL), devtools_agent_(NULL), accessibility_mode_(AccessibilityModeOff), renderer_accessibility_(NULL), java_bridge_dispatcher_(NULL), mouse_lock_dispatcher_(NULL), favicon_helper_(NULL), #if defined(OS_ANDROID) body_background_color_(SK_ColorWHITE), update_frame_info_scheduled_(false), expected_content_intent_id_(0), media_player_proxy_(NULL), synchronous_find_active_match_ordinal_(-1), ALLOW_THIS_IN_INITIALIZER_LIST( load_progress_tracker_(new LoadProgressTracker(this))), #endif session_storage_namespace_id_(params->session_storage_namespace_id), handling_select_range_(false), next_snapshot_id_(0), #if defined(OS_WIN) focused_plugin_id_(-1), #endif updating_frame_tree_(false), pending_frame_tree_update_(false), target_process_id_(0), target_routing_id_(0) { #if defined(ENABLE_PLUGINS) pepper_helper_.reset(new PepperPluginDelegateImpl(this)); #else pepper_helper_.reset(new RenderViewPepperHelper()); #endif set_throttle_input_events(params->renderer_prefs.throttle_input_events); routing_id_ = params->routing_id; surface_id_ = params->surface_id; if (params->opener_id != MSG_ROUTING_NONE && params->is_renderer_created) opener_id_ = params->opener_id; // Ensure we start with a valid next_page_id_ from the browser. DCHECK_GE(next_page_id_, 0); #if defined(ENABLE_NOTIFICATIONS) notification_provider_ = new NotificationProvider(this); #else notification_provider_ = NULL; #endif webwidget_ = WebView::create(this); webwidget_mouse_lock_target_.reset(new WebWidgetLockTarget(webwidget_)); const CommandLine& command_line = *CommandLine::ForCurrentProcess(); #if defined(OS_ANDROID) scoped_ptr device_info(new DeviceInfo()); const std::string region_code = command_line.HasSwitch(switches::kNetworkCountryIso) ? command_line.GetSwitchValueASCII(switches::kNetworkCountryIso) : device_info->GetNetworkCountryIso(); content_detectors_.push_back(linked_ptr( new AddressDetector())); content_detectors_.push_back(linked_ptr( new PhoneNumberDetector(region_code))); content_detectors_.push_back(linked_ptr( new EmailDetector())); #endif if (params->counter) { shared_popup_counter_ = params->counter; // Only count this if it isn't swapped out upon creation. if (!params->swapped_out) shared_popup_counter_->data++; decrement_shared_popup_at_destruction_ = true; } else { shared_popup_counter_ = new SharedRenderViewCounter(0); decrement_shared_popup_at_destruction_ = false; } RenderThread::Get()->AddRoute(routing_id_, this); // Take a reference on behalf of the RenderThread. This will be balanced // when we receive ViewMsg_ClosePage. AddRef(); // If this is a popup, we must wait for the CreatingNew_ACK message before // completing initialization. Otherwise, we can finish it now. if (opener_id_ == MSG_ROUTING_NONE) { did_show_ = true; CompleteInit(); } g_view_map.Get().insert(std::make_pair(webview(), this)); g_routing_id_view_map.Get().insert(std::make_pair(routing_id_, this)); webview()->setDeviceScaleFactor(device_scale_factor_); webkit_preferences_.Apply(webview()); webview()->initializeMainFrame(this); if (command_line.HasSwitch(switches::kEnableTouchDragDrop)) webview()->settings()->setTouchDragDropEnabled(true); if (!params->frame_name.empty()) webview()->mainFrame()->setName(params->frame_name); webview()->settings()->setMinimumTimerInterval( is_hidden() ? webkit_glue::kBackgroundTabTimerInterval : webkit_glue::kForegroundTabTimerInterval); OnSetRendererPrefs(params->renderer_prefs); #if defined(ENABLE_WEBRTC) if (!media_stream_dispatcher_) media_stream_dispatcher_ = new MediaStreamDispatcher(this); #endif new MHTMLGenerator(this); #if defined(OS_MACOSX) new TextInputClientObserver(this); #endif // defined(OS_MACOSX) #if defined(OS_ANDROID) media_player_manager_.reset( new webkit_media::WebMediaPlayerManagerAndroid()); #endif // The next group of objects all implement RenderViewObserver, so are deleted // along with the RenderView automatically. devtools_agent_ = new DevToolsAgent(this); mouse_lock_dispatcher_ = new RenderViewMouseLockDispatcher(this); intents_host_ = new WebIntentsHost(this); favicon_helper_ = new FaviconHelper(this); // Create renderer_accessibility_ if needed. OnSetAccessibilityMode(params->accessibility_mode); new IdleUserDetector(this); if (command_line.HasSwitch(switches::kDomAutomationController)) enabled_bindings_ |= BINDINGS_POLICY_DOM_AUTOMATION; ProcessViewLayoutFlags(command_line); GetContentClient()->renderer()->RenderViewCreated(this); // If we have an opener_id but we weren't created by a renderer, then // it's the browser asking us to set our opener to another RenderView. if (params->opener_id != MSG_ROUTING_NONE && !params->is_renderer_created) { RenderViewImpl* opener_view = FromRoutingID(params->opener_id); if (opener_view) webview()->mainFrame()->setOpener(opener_view->webview()->mainFrame()); } // If we are initially swapped out, navigate to kSwappedOutURL. // This ensures we are in a unique origin that others cannot script. if (is_swapped_out_) NavigateToSwappedOutURL(webview()->mainFrame()); } RenderViewImpl::~RenderViewImpl() { history_page_ids_.clear(); if (decrement_shared_popup_at_destruction_) shared_popup_counter_->data--; // If file chooser is still waiting for answer, dispatch empty answer. while (!file_chooser_completions_.empty()) { if (file_chooser_completions_.front()->completion) { file_chooser_completions_.front()->completion->didChooseFile( WebVector()); } file_chooser_completions_.pop_front(); } #if defined(OS_MACOSX) // Destroy all fake plugin window handles on the browser side. while (!fake_plugin_window_handles_.empty()) { // Make sure no NULL plugin window handles were inserted into this list. DCHECK(*fake_plugin_window_handles_.begin()); // DestroyFakePluginWindowHandle modifies fake_plugin_window_handles_. DestroyFakePluginWindowHandle(*fake_plugin_window_handles_.begin()); } #endif #ifndef NDEBUG // Make sure we are no longer referenced by the ViewMap or RoutingIDViewMap. ViewMap* views = g_view_map.Pointer(); for (ViewMap::iterator it = views->begin(); it != views->end(); ++it) DCHECK_NE(this, it->second) << "Failed to call Close?"; RoutingIDViewMap* routing_id_views = g_routing_id_view_map.Pointer(); for (RoutingIDViewMap::iterator it = routing_id_views->begin(); it != routing_id_views->end(); ++it) DCHECK_NE(this, it->second) << "Failed to call Close?"; #endif FOR_EACH_OBSERVER(RenderViewObserver, observers_, RenderViewGone()); FOR_EACH_OBSERVER(RenderViewObserver, observers_, OnDestruct()); } /*static*/ RenderViewImpl* RenderViewImpl::FromWebView(WebView* webview) { ViewMap* views = g_view_map.Pointer(); ViewMap::iterator it = views->find(webview); return it == views->end() ? NULL : it->second; } /*static*/ RenderView* RenderView::FromWebView(WebKit::WebView* webview) { return RenderViewImpl::FromWebView(webview); } /*static*/ RenderViewImpl* RenderViewImpl::FromRoutingID(int32 routing_id) { RoutingIDViewMap* views = g_routing_id_view_map.Pointer(); RoutingIDViewMap::iterator it = views->find(routing_id); return it == views->end() ? NULL : it->second; } /*static*/ RenderView* RenderView::FromRoutingID(int routing_id) { return RenderViewImpl::FromRoutingID(routing_id); } /*static*/ void RenderView::ForEach(RenderViewVisitor* visitor) { ViewMap* views = g_view_map.Pointer(); for (ViewMap::iterator it = views->begin(); it != views->end(); ++it) { if (!visitor->Visit(it->second)) return; } } /*static*/ RenderViewImpl* RenderViewImpl::Create( int32 opener_id, const RendererPreferences& renderer_prefs, const WebPreferences& webkit_prefs, SharedRenderViewCounter* counter, int32 routing_id, int32 surface_id, int64 session_storage_namespace_id, const string16& frame_name, bool is_renderer_created, bool swapped_out, int32 next_page_id, const WebKit::WebScreenInfo& screen_info, AccessibilityMode accessibility_mode) { DCHECK(routing_id != MSG_ROUTING_NONE); RenderViewImplParams params( opener_id, renderer_prefs, webkit_prefs, counter, routing_id, surface_id, session_storage_namespace_id, frame_name, is_renderer_created, swapped_out, next_page_id, screen_info, accessibility_mode); if (g_create_render_view_impl) return g_create_render_view_impl(¶ms); return new RenderViewImpl(¶ms); } // static void RenderViewImpl::InstallCreateHook( RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*)) { CHECK(!g_create_render_view_impl); g_create_render_view_impl = create_render_view_impl; } void RenderViewImpl::AddObserver(RenderViewObserver* observer) { observers_.AddObserver(observer); } void RenderViewImpl::RemoveObserver(RenderViewObserver* observer) { observer->RenderViewGone(); observers_.RemoveObserver(observer); } WebKit::WebView* RenderViewImpl::webview() const { return static_cast(webwidget()); } void RenderViewImpl::PluginCrashed(const FilePath& plugin_path) { Send(new ViewHostMsg_CrashedPlugin(routing_id_, plugin_path)); } void RenderViewImpl::RegisterPluginDelegate(WebPluginDelegateProxy* delegate) { plugin_delegates_.insert(delegate); // If the renderer is visible, set initial visibility and focus state. if (!is_hidden()) { #if defined(OS_MACOSX) delegate->SetContainerVisibility(true); if (webview() && webview()->isActive()) delegate->SetWindowFocus(true); #endif } // Plugins start assuming the content has focus (so that they work in // environments where RenderView isn't hosting them), so we always have to // set the initial state. See webplugin_delegate_impl.h for details. delegate->SetContentAreaFocus(has_focus()); } void RenderViewImpl::UnregisterPluginDelegate( WebPluginDelegateProxy* delegate) { plugin_delegates_.erase(delegate); } bool RenderViewImpl::GetPluginInfo(const GURL& url, const GURL& page_url, const std::string& mime_type, webkit::WebPluginInfo* plugin_info, std::string* actual_mime_type) { bool found = false; Send(new ViewHostMsg_GetPluginInfo( routing_id_, url, page_url, mime_type, &found, plugin_info, actual_mime_type)); return found; } void RenderViewImpl::TransferActiveWheelFlingAnimation( const WebKit::WebActiveWheelFlingParameters& params) { if (webview()) webview()->transferActiveWheelFlingAnimation(params); } bool RenderViewImpl::HasIMETextFocus() { return GetTextInputType() != ui::TEXT_INPUT_TYPE_NONE; } bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) { WebFrame* main_frame = webview() ? webview()->mainFrame() : NULL; if (main_frame) GetContentClient()->SetActiveURL(main_frame->document().url()); ObserverListBase::Iterator it(observers_); RenderViewObserver* observer; while ((observer = it.GetNext()) != NULL) if (observer->OnMessageReceived(message)) return true; bool handled = true; bool msg_is_ok = true; IPC_BEGIN_MESSAGE_MAP_EX(RenderViewImpl, message, msg_is_ok) IPC_MESSAGE_HANDLER(ViewMsg_Navigate, OnNavigate) IPC_MESSAGE_HANDLER(ViewMsg_Stop, OnStop) IPC_MESSAGE_HANDLER(ViewMsg_ReloadFrame, OnReloadFrame) IPC_MESSAGE_HANDLER(ViewMsg_Undo, OnUndo) IPC_MESSAGE_HANDLER(ViewMsg_Redo, OnRedo) IPC_MESSAGE_HANDLER(ViewMsg_Cut, OnCut) IPC_MESSAGE_HANDLER(ViewMsg_Copy, OnCopy) IPC_MESSAGE_HANDLER(ViewMsg_Paste, OnPaste) IPC_MESSAGE_HANDLER(ViewMsg_PasteAndMatchStyle, OnPasteAndMatchStyle) IPC_MESSAGE_HANDLER(ViewMsg_Replace, OnReplace) IPC_MESSAGE_HANDLER(ViewMsg_Delete, OnDelete) IPC_MESSAGE_HANDLER(ViewMsg_SelectAll, OnSelectAll) IPC_MESSAGE_HANDLER(ViewMsg_Unselect, OnUnselect) IPC_MESSAGE_HANDLER(ViewMsg_SetEditableSelectionOffsets, OnSetEditableSelectionOffsets) IPC_MESSAGE_HANDLER(ViewMsg_SetCompositionFromExistingText, OnSetCompositionFromExistingText) IPC_MESSAGE_HANDLER(ViewMsg_ExtendSelectionAndDelete, OnExtendSelectionAndDelete) IPC_MESSAGE_HANDLER(ViewMsg_SelectRange, OnSelectRange) IPC_MESSAGE_HANDLER(ViewMsg_CopyImageAt, OnCopyImageAt) IPC_MESSAGE_HANDLER(ViewMsg_ExecuteEditCommand, OnExecuteEditCommand) IPC_MESSAGE_HANDLER(ViewMsg_Find, OnFind) IPC_MESSAGE_HANDLER(ViewMsg_StopFinding, OnStopFinding) IPC_MESSAGE_HANDLER(ViewMsg_Zoom, OnZoom) IPC_MESSAGE_HANDLER(ViewMsg_SetZoomLevel, OnSetZoomLevel) IPC_MESSAGE_HANDLER(ViewMsg_ZoomFactor, OnZoomFactor) IPC_MESSAGE_HANDLER(ViewMsg_SetZoomLevelForLoadingURL, OnSetZoomLevelForLoadingURL) IPC_MESSAGE_HANDLER(ViewMsg_SetPageEncoding, OnSetPageEncoding) IPC_MESSAGE_HANDLER(ViewMsg_ResetPageEncodingToDefault, OnResetPageEncodingToDefault) IPC_MESSAGE_HANDLER(ViewMsg_ScriptEvalRequest, OnScriptEvalRequest) IPC_MESSAGE_HANDLER(ViewMsg_PostMessageEvent, OnPostMessageEvent) IPC_MESSAGE_HANDLER(ViewMsg_CSSInsertRequest, OnCSSInsertRequest) IPC_MESSAGE_HANDLER(DragMsg_TargetDragEnter, OnDragTargetDragEnter) IPC_MESSAGE_HANDLER(DragMsg_TargetDragOver, OnDragTargetDragOver) IPC_MESSAGE_HANDLER(DragMsg_TargetDragLeave, OnDragTargetDragLeave) IPC_MESSAGE_HANDLER(DragMsg_TargetDrop, OnDragTargetDrop) IPC_MESSAGE_HANDLER(DragMsg_SourceEndedOrMoved, OnDragSourceEndedOrMoved) IPC_MESSAGE_HANDLER(DragMsg_SourceSystemDragEnded, OnDragSourceSystemDragEnded) IPC_MESSAGE_HANDLER(ViewMsg_AllowBindings, OnAllowBindings) IPC_MESSAGE_HANDLER(ViewMsg_SetInitialFocus, OnSetInitialFocus) IPC_MESSAGE_HANDLER(ViewMsg_ScrollFocusedEditableNodeIntoRect, OnScrollFocusedEditableNodeIntoRect) IPC_MESSAGE_HANDLER(ViewMsg_UpdateTargetURL_ACK, OnUpdateTargetURLAck) IPC_MESSAGE_HANDLER(ViewMsg_UpdateWebPreferences, OnUpdateWebPreferences) IPC_MESSAGE_HANDLER(ViewMsg_TimezoneChange, OnUpdateTimezone) IPC_MESSAGE_HANDLER(ViewMsg_SetAltErrorPageURL, OnSetAltErrorPageURL) IPC_MESSAGE_HANDLER(ViewMsg_EnumerateDirectoryResponse, OnEnumerateDirectoryResponse) IPC_MESSAGE_HANDLER(ViewMsg_RunFileChooserResponse, OnFileChooserResponse) IPC_MESSAGE_HANDLER(ViewMsg_ShouldClose, OnShouldClose) IPC_MESSAGE_HANDLER(ViewMsg_SwapOut, OnSwapOut) IPC_MESSAGE_HANDLER(ViewMsg_ClosePage, OnClosePage) IPC_MESSAGE_HANDLER(ViewMsg_ThemeChanged, OnThemeChanged) IPC_MESSAGE_HANDLER(ViewMsg_DisassociateFromPopupCount, OnDisassociateFromPopupCount) IPC_MESSAGE_HANDLER(ViewMsg_MoveOrResizeStarted, OnMoveOrResizeStarted) IPC_MESSAGE_HANDLER(ViewMsg_ClearFocusedNode, OnClearFocusedNode) IPC_MESSAGE_HANDLER(ViewMsg_SetBackground, OnSetBackground) IPC_MESSAGE_HANDLER(ViewMsg_EnablePreferredSizeChangedMode, OnEnablePreferredSizeChangedMode) IPC_MESSAGE_HANDLER(ViewMsg_EnableAutoResize, OnEnableAutoResize) IPC_MESSAGE_HANDLER(ViewMsg_DisableAutoResize, OnDisableAutoResize) IPC_MESSAGE_HANDLER(ViewMsg_DisableScrollbarsForSmallWindows, OnDisableScrollbarsForSmallWindows) IPC_MESSAGE_HANDLER(ViewMsg_SetRendererPrefs, OnSetRendererPrefs) IPC_MESSAGE_HANDLER(ViewMsg_MediaPlayerActionAt, OnMediaPlayerActionAt) IPC_MESSAGE_HANDLER(ViewMsg_OrientationChangeEvent, OnOrientationChangeEvent) IPC_MESSAGE_HANDLER(ViewMsg_PluginActionAt, OnPluginActionAt) IPC_MESSAGE_HANDLER(ViewMsg_SetActive, OnSetActive) IPC_MESSAGE_HANDLER(ViewMsg_SetNavigationStartTime, OnSetNavigationStartTime) IPC_MESSAGE_HANDLER(ViewMsg_SetEditCommandsForNextKeyEvent, OnSetEditCommandsForNextKeyEvent) IPC_MESSAGE_HANDLER(ViewMsg_CustomContextMenuAction, OnCustomContextMenuAction) IPC_MESSAGE_HANDLER(ViewMsg_AsyncOpenFile_ACK, OnAsyncFileOpened) IPC_MESSAGE_HANDLER(ViewMsg_PpapiBrokerChannelCreated, OnPpapiBrokerChannelCreated) IPC_MESSAGE_HANDLER(ViewMsg_PpapiBrokerPermissionResult, OnPpapiBrokerPermissionResult) IPC_MESSAGE_HANDLER(ViewMsg_GetAllSavableResourceLinksForCurrentPage, OnGetAllSavableResourceLinksForCurrentPage) IPC_MESSAGE_HANDLER( ViewMsg_GetSerializedHtmlDataForCurrentPageWithLocalLinks, OnGetSerializedHtmlDataForCurrentPageWithLocalLinks) IPC_MESSAGE_HANDLER(ViewMsg_ContextMenuClosed, OnContextMenuClosed) // TODO(viettrungluu): Move to a separate message filter. IPC_MESSAGE_HANDLER(ViewMsg_SetHistoryLengthAndPrune, OnSetHistoryLengthAndPrune) IPC_MESSAGE_HANDLER(ViewMsg_EnableViewSourceMode, OnEnableViewSourceMode) IPC_MESSAGE_HANDLER(JavaBridgeMsg_Init, OnJavaBridgeInit) IPC_MESSAGE_HANDLER(ViewMsg_SetAccessibilityMode, OnSetAccessibilityMode) IPC_MESSAGE_HANDLER(ViewMsg_DisownOpener, OnDisownOpener) IPC_MESSAGE_HANDLER(ViewMsg_UpdateFrameTree, OnUpdatedFrameTree) #if defined(OS_ANDROID) IPC_MESSAGE_HANDLER(ViewMsg_ActivateNearestFindResult, OnActivateNearestFindResult) IPC_MESSAGE_HANDLER(ViewMsg_FindMatchRects, OnFindMatchRects) IPC_MESSAGE_HANDLER(ViewMsg_SelectPopupMenuItems, OnSelectPopupMenuItems) IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewMsg_SynchronousFind, OnSynchronousFind) IPC_MESSAGE_HANDLER(ViewMsg_UndoScrollFocusedEditableNodeIntoView, OnUndoScrollFocusedEditableNodeIntoRect) #elif defined(OS_MACOSX) IPC_MESSAGE_HANDLER(ViewMsg_CopyToFindPboard, OnCopyToFindPboard) IPC_MESSAGE_HANDLER(ViewMsg_PluginImeCompositionCompleted, OnPluginImeCompositionCompleted) IPC_MESSAGE_HANDLER(ViewMsg_SelectPopupMenuItem, OnSelectPopupMenuItem) IPC_MESSAGE_HANDLER(ViewMsg_SetInLiveResize, OnSetInLiveResize) IPC_MESSAGE_HANDLER(ViewMsg_SetWindowVisibility, OnSetWindowVisibility) IPC_MESSAGE_HANDLER(ViewMsg_WindowFrameChanged, OnWindowFrameChanged) #endif IPC_MESSAGE_HANDLER(ViewMsg_ReleaseDisambiguationPopupDIB, OnReleaseDisambiguationPopupDIB) IPC_MESSAGE_HANDLER(ViewMsg_WindowSnapshotCompleted, OnWindowSnapshotCompleted) // Have the super handle all other messages. IPC_MESSAGE_UNHANDLED(handled = RenderWidget::OnMessageReceived(message)) IPC_END_MESSAGE_MAP() if (!msg_is_ok) { // The message had a handler, but its deserialization failed. // Kill the renderer to avoid potential spoofing attacks. CHECK(false) << "Unable to deserialize message in RenderViewImpl."; } return handled; } void RenderViewImpl::OnNavigate(const ViewMsg_Navigate_Params& params) { MaybeHandleDebugURL(params.url); if (!webview()) return; FOR_EACH_OBSERVER(RenderViewObserver, observers_, Navigate(params.url)); bool is_reload = IsReload(params); // If this is a stale back/forward (due to a recent navigation the browser // didn't know about), ignore it. if (IsBackForwardToStaleEntry(params, is_reload)) return; // Swap this renderer back in if necessary. if (is_swapped_out_) { // We marked the view as hidden when swapping the view out, so be sure to // reset the visibility state before navigating to the new URL. webview()->setVisibilityState(visibilityState(), false); // If this is an attempt to reload while we are swapped out, we should not // reload swappedout://, but the previous page, which is stored in // params.state. Setting is_reload to false will treat this like a back // navigation to accomplish that. is_reload = false; SetSwappedOut(false); } history_list_offset_ = params.current_history_list_offset; history_list_length_ = params.current_history_list_length; if (history_list_length_ >= 0) history_page_ids_.resize(history_list_length_, -1); if (params.pending_history_list_offset >= 0 && params.pending_history_list_offset < history_list_length_) history_page_ids_[params.pending_history_list_offset] = params.page_id; GetContentClient()->SetActiveURL(params.url); WebFrame* main_frame = webview()->mainFrame(); if (is_reload && main_frame->currentHistoryItem().isNull()) { // We cannot reload if we do not have any history state. This happens, for // example, when recovering from a crash. Our workaround here is a bit of // a hack since it means that reload after a crashed tab does not cause an // end-to-end cache validation. is_reload = false; } pending_navigation_params_.reset(new ViewMsg_Navigate_Params(params)); // If we are reloading, then WebKit will use the history state of the current // page, so we should just ignore any given history state. Otherwise, if we // have history state, then we need to navigate to it, which corresponds to a // back/forward navigation event. if (is_reload) { bool reload_original_url = (params.navigation_type == ViewMsg_Navigate_Type::RELOAD_ORIGINAL_REQUEST_URL); bool ignore_cache = (params.navigation_type == ViewMsg_Navigate_Type::RELOAD_IGNORING_CACHE); if (reload_original_url) main_frame->reloadWithOverrideURL(params.url, true); else main_frame->reload(ignore_cache); } else if (!params.state.empty()) { // We must know the page ID of the page we are navigating back to. DCHECK_NE(params.page_id, -1); WebHistoryItem item = webkit_glue::HistoryItemFromString(params.state); if (!item.isNull()) { // Ensure we didn't save the swapped out URL in UpdateState, since the // browser should never be telling us to navigate to swappedout://. CHECK(item.urlString() != WebString::fromUTF8(kSwappedOutURL)); main_frame->loadHistoryItem(item); } } else if (!params.base_url_for_data_url.is_empty()) { // A loadData request with a specified base URL. std::string mime_type, charset, data; if (net::DataURL::Parse(params.url, &mime_type, &charset, &data)) { main_frame->loadData( WebData(data.c_str(), data.length()), WebString::fromUTF8(mime_type), WebString::fromUTF8(charset), params.base_url_for_data_url, params.history_url_for_data_url, false); } else { CHECK(false) << "Invalid URL passed: " << params.url.possibly_invalid_spec(); } } else { // Navigate to the given URL. WebURLRequest request(params.url); // A session history navigation should have been accompanied by state. CHECK_EQ(params.page_id, -1); if (main_frame->isViewSourceModeEnabled()) request.setCachePolicy(WebURLRequest::ReturnCacheDataElseLoad); if (params.referrer.url.is_valid()) { WebString referrer = WebSecurityPolicy::generateReferrerHeader( params.referrer.policy, params.url, WebString::fromUTF8(params.referrer.url.spec())); if (!referrer.isEmpty()) request.setHTTPHeaderField(WebString::fromUTF8("Referer"), referrer); } if (!params.extra_headers.empty()) { for (net::HttpUtil::HeadersIterator i(params.extra_headers.begin(), params.extra_headers.end(), "\n"); i.GetNext(); ) { request.addHTTPHeaderField(WebString::fromUTF8(i.name()), WebString::fromUTF8(i.values())); } } if (params.is_post) { request.setHTTPMethod(WebString::fromUTF8("POST")); // Set post data. WebHTTPBody http_body; http_body.initialize(); http_body.appendData(WebData( reinterpret_cast( ¶ms.browser_initiated_post_data.front()), params.browser_initiated_post_data.size())); request.setHTTPBody(http_body); } main_frame->loadRequest(request); } // In case LoadRequest failed before DidCreateDataSource was called. pending_navigation_params_.reset(); } bool RenderViewImpl::IsBackForwardToStaleEntry( const ViewMsg_Navigate_Params& params, bool is_reload) { // Make sure this isn't a back/forward to an entry we have already cropped // or replaced from our history, before the browser knew about it. If so, // a new navigation has committed in the mean time, and we can ignore this. bool is_back_forward = !is_reload && !params.state.empty(); // Note: if the history_list_length_ is 0 for a back/forward, we must be // restoring from a previous session. We'll update our state in OnNavigate. if (!is_back_forward || history_list_length_ <= 0) return false; DCHECK_EQ(static_cast(history_page_ids_.size()), history_list_length_); // Check for whether the forward history has been cropped due to a recent // navigation the browser didn't know about. if (params.pending_history_list_offset >= history_list_length_) return true; // Check for whether this entry has been replaced with a new one. int expected_page_id = history_page_ids_[params.pending_history_list_offset]; if (expected_page_id > 0 && params.page_id != expected_page_id) { if (params.page_id < expected_page_id) return true; // Otherwise we've removed an earlier entry and should have shifted all // entries left. For now, it's ok to lazily update the list. // TODO(creis): Notify all live renderers when we remove entries from // the front of the list, so that we don't hit this case. history_page_ids_[params.pending_history_list_offset] = params.page_id; } return false; } // Stop loading the current page void RenderViewImpl::OnStop() { if (webview()) { WebFrame* main_frame = webview()->mainFrame(); // Stop the alt error page fetcher. If we let it continue it may complete // and cause RenderViewHostManager to swap to this RenderView, even though // it may no longer be active. StopAltErrorPageFetcher(main_frame->provisionalDataSource()); StopAltErrorPageFetcher(main_frame->dataSource()); main_frame->stopLoading(); } } // Reload current focused frame. // E.g. called by right-clicking on the frame and picking "reload this frame". void RenderViewImpl::OnReloadFrame() { if (webview() && webview()->focusedFrame()) { // We always obey the cache (ignore_cache=false) here. // TODO(evanm): perhaps we could allow shift-clicking the menu item to do // a cache-ignoring reload of the frame. webview()->focusedFrame()->reload(false); } } void RenderViewImpl::OnCopyImageAt(int x, int y) { webview()->copyImageAt(WebPoint(x, y)); } void RenderViewImpl::OnExecuteEditCommand(const std::string& name, const std::string& value) { if (!webview() || !webview()->focusedFrame()) return; webview()->focusedFrame()->executeCommand( WebString::fromUTF8(name), WebString::fromUTF8(value)); } void RenderViewImpl::OnUpdateTargetURLAck() { // Check if there is a targeturl waiting to be sent. if (target_url_status_ == TARGET_PENDING) { Send(new ViewHostMsg_UpdateTargetURL(routing_id_, page_id_, pending_target_url_)); } target_url_status_ = TARGET_NONE; } void RenderViewImpl::OnUndo() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Undo")); } void RenderViewImpl::OnRedo() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Redo")); } void RenderViewImpl::OnCut() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Cut")); } void RenderViewImpl::OnCopy() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Copy"), context_menu_node_); } #if defined(OS_MACOSX) void RenderViewImpl::OnCopyToFindPboard() { if (!webview()) return; // Since the find pasteboard supports only plain text, this can be simpler // than the |OnCopy()| case. WebFrame* frame = webview()->focusedFrame(); if (frame->hasSelection()) { string16 selection = frame->selectionAsText(); RenderThread::Get()->Send( new ClipboardHostMsg_FindPboardWriteStringAsync(selection)); } } #endif void RenderViewImpl::OnPaste() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Paste")); } void RenderViewImpl::OnPasteAndMatchStyle() { if (!webview()) return; webview()->focusedFrame()->executeCommand( WebString::fromUTF8("PasteAndMatchStyle")); } void RenderViewImpl::OnReplace(const string16& text) { if (!webview()) return; WebFrame* frame = webview()->focusedFrame(); if (!frame->hasSelection()) frame->selectWordAroundCaret(); frame->replaceSelection(text); } void RenderViewImpl::OnDelete() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Delete")); } void RenderViewImpl::OnSelectAll() { if (!webview()) return; webview()->focusedFrame()->executeCommand( WebString::fromUTF8("SelectAll")); } void RenderViewImpl::OnUnselect() { if (!webview()) return; webview()->focusedFrame()->executeCommand(WebString::fromUTF8("Unselect")); } void RenderViewImpl::OnSetEditableSelectionOffsets(int start, int end) { webview()->setEditableSelectionOffsets(start, end); } void RenderViewImpl::OnSetCompositionFromExistingText( int start, int end, const std::vector& underlines) { if (!webview()) return; webview()->setCompositionFromExistingText(start, end, underlines); } void RenderViewImpl::OnExtendSelectionAndDelete(int before, int after) { if (!webview()) return; webview()->extendSelectionAndDelete(before, after); } void RenderViewImpl::OnSelectRange(const gfx::Point& start, const gfx::Point& end) { if (!webview()) return; Send(new ViewHostMsg_SelectRange_ACK(routing_id_)); handling_select_range_ = true; webview()->focusedFrame()->selectRange(start, end); handling_select_range_ = false; } void RenderViewImpl::OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id) { DCHECK_GE(history_length, 0); DCHECK(history_list_offset_ == history_list_length_ - 1); DCHECK_GE(minimum_page_id, -1); // Generate the new list. std::vector new_history_page_ids(history_length, -1); for (size_t i = 0; i < history_page_ids_.size(); ++i) { if (minimum_page_id >= 0 && history_page_ids_[i] < minimum_page_id) continue; new_history_page_ids.push_back(history_page_ids_[i]); } new_history_page_ids.swap(history_page_ids_); // Update indexes. history_list_length_ = history_page_ids_.size(); history_list_offset_ = history_list_length_ - 1; } void RenderViewImpl::OnSetInitialFocus(bool reverse) { if (!webview()) return; webview()->setInitialFocus(reverse); } #if defined(OS_MACOSX) void RenderViewImpl::OnSetInLiveResize(bool in_live_resize) { if (!webview()) return; if (in_live_resize) webview()->willStartLiveResize(); else webview()->willEndLiveResize(); } #endif void RenderViewImpl::OnScrollFocusedEditableNodeIntoRect( const gfx::Rect& rect) { WebKit::WebNode node = GetFocusedNode(); if (!node.isNull()) { if (IsEditableNode(node)) { webview()->saveScrollAndScaleState(); webview()->scrollFocusedNodeIntoRect(rect); } } } #if defined(OS_ANDROID) void RenderViewImpl::OnUndoScrollFocusedEditableNodeIntoRect() { const WebNode node = GetFocusedNode(); if (!node.isNull() && IsEditableNode(node)) webview()->restoreScrollAndScaleState(); } #endif /////////////////////////////////////////////////////////////////////////////// // Tell the embedding application that the URL of the active page has changed void RenderViewImpl::UpdateURL(WebFrame* frame) { WebDataSource* ds = frame->dataSource(); DCHECK(ds); const WebURLRequest& request = ds->request(); const WebURLRequest& original_request = ds->originalRequest(); const WebURLResponse& response = ds->response(); DocumentState* document_state = DocumentState::FromDataSource(ds); NavigationState* navigation_state = document_state->navigation_state(); ViewHostMsg_FrameNavigate_Params params; params.http_status_code = response.httpStatusCode(); params.is_post = false; params.post_id = -1; params.page_id = page_id_; params.frame_id = frame->identifier(); params.socket_address.set_host(response.remoteIPAddress().utf8()); params.socket_address.set_port(response.remotePort()); params.was_fetched_via_proxy = response.wasFetchedViaProxy(); params.was_within_same_page = navigation_state->was_within_same_page(); if (!document_state->security_info().empty()) { // SSL state specified in the request takes precedence over the one in the // response. // So far this is only intended for error pages that are not expected to be // over ssl, so we should not get any clash. DCHECK(response.securityInfo().isEmpty()); params.security_info = document_state->security_info(); } else { params.security_info = response.securityInfo(); } // Set the URL to be displayed in the browser UI to the user. params.url = GetLoadingUrl(frame); if (frame->document().baseURL() != params.url) params.base_url = frame->document().baseURL(); GetRedirectChain(ds, ¶ms.redirects); params.should_update_history = !ds->hasUnreachableURL() && !response.isMultipartPayload() && (response.httpStatusCode() != 404); params.searchable_form_url = document_state->searchable_form_url(); params.searchable_form_encoding = document_state->searchable_form_encoding(); const PasswordForm* password_form_data = document_state->password_form_data(); if (password_form_data) params.password_form = *password_form_data; params.gesture = navigation_gesture_; navigation_gesture_ = NavigationGestureUnknown; // Make navigation state a part of the FrameNavigate message so that commited // entry had it at all times. const WebHistoryItem& item = frame->currentHistoryItem(); if (!item.isNull()) { params.content_state = webkit_glue::HistoryItemToString(item); } else { params.content_state = webkit_glue::CreateHistoryStateForURL(GURL(request.url())); } if (!frame->parent()) { // Top-level navigation. // Reset the zoom limits in case a plugin had changed them previously. This // will also call us back which will cause us to send a message to // update WebContentsImpl. webview()->zoomLimitsChanged( WebView::zoomFactorToZoomLevel(kMinimumZoomFactor), WebView::zoomFactorToZoomLevel(kMaximumZoomFactor)); // Set zoom level, but don't do it for full-page plugin since they don't use // the same zoom settings. HostZoomLevels::iterator host_zoom = host_zoom_levels_.find(GURL(request.url())); if (webview()->mainFrame()->document().isPluginDocument()) { // Reset the zoom levels for plugins. webview()->setZoomLevel(false, 0); } else { if (host_zoom != host_zoom_levels_.end()) webview()->setZoomLevel(false, host_zoom->second); } if (host_zoom != host_zoom_levels_.end()) { // This zoom level was merely recorded transiently for this load. We can // erase it now. If at some point we reload this page, the browser will // send us a new, up-to-date zoom level. host_zoom_levels_.erase(host_zoom); } // Update contents MIME type for main frame. params.contents_mime_type = ds->response().mimeType().utf8(); params.transition = navigation_state->transition_type(); if (!PageTransitionIsMainFrame(params.transition)) { // If the main frame does a load, it should not be reported as a subframe // navigation. This can occur in the following case: // 1. You're on a site with frames. // 2. You do a subframe navigation. This is stored with transition type // MANUAL_SUBFRAME. // 3. You navigate to some non-frame site, say, google.com. // 4. You navigate back to the page from step 2. Since it was initially // MANUAL_SUBFRAME, it will be that same transition type here. // We don't want that, because any navigation that changes the toplevel // frame should be tracked as a toplevel navigation (this allows us to // update the URL bar, etc). params.transition = PAGE_TRANSITION_LINK; } // If we have a valid consumed client redirect source, // the page contained a client redirect (meta refresh, document.loc...), // so we set the referrer and transition to match. if (completed_client_redirect_src_.url.is_valid()) { DCHECK(completed_client_redirect_src_.url == params.redirects[0]); params.referrer = completed_client_redirect_src_; params.transition = static_cast( params.transition | PAGE_TRANSITION_CLIENT_REDIRECT); } else { // Bug 654101: the referrer will be empty on https->http transitions. It // would be nice if we could get the real referrer from somewhere. params.referrer = Referrer(GURL( original_request.httpHeaderField(WebString::fromUTF8("Referer"))), GetReferrerPolicyFromRequest(frame, original_request)); } string16 method = request.httpMethod(); if (EqualsASCII(method, "POST")) { params.is_post = true; params.post_id = ExtractPostId(item); } // Send the user agent override back. params.is_overriding_user_agent = document_state->is_overriding_user_agent(); // Track the URL of the original request. params.original_request_url = original_request.url(); // Save some histogram data so we can compute the average memory used per // page load of the glyphs. UMA_HISTOGRAM_COUNTS_10000("Memory.GlyphPagesPerLoad", webkit_glue::GetGlyphPageCount()); // This message needs to be sent before any of allowScripts(), // allowImages(), allowPlugins() is called for the new page, so that when // these functions send a ViewHostMsg_ContentBlocked message, it arrives // after the ViewHostMsg_FrameNavigate message. Send(new ViewHostMsg_FrameNavigate(routing_id_, params)); } else { // Subframe navigation: the type depends on whether this navigation // generated a new session history entry. When they do generate a session // history entry, it means the user initiated the navigation and we should // mark it as such. This test checks if this is the first time UpdateURL // has been called since WillNavigateToURL was called to initiate the load. if (page_id_ > last_page_id_sent_to_browser_) params.transition = PAGE_TRANSITION_MANUAL_SUBFRAME; else params.transition = PAGE_TRANSITION_AUTO_SUBFRAME; Send(new ViewHostMsg_FrameNavigate(routing_id_, params)); } last_page_id_sent_to_browser_ = std::max(last_page_id_sent_to_browser_, page_id_); // If we end up reusing this WebRequest (for example, due to a #ref click), // we don't want the transition type to persist. Just clear it. navigation_state->set_transition_type(PAGE_TRANSITION_LINK); } // Tell the embedding application that the title of the active page has changed void RenderViewImpl::UpdateTitle(WebFrame* frame, const string16& title, WebTextDirection title_direction) { // Ignore all but top level navigations. if (frame->parent()) return; string16 shortened_title = title.substr(0, kMaxTitleChars); Send(new ViewHostMsg_UpdateTitle(routing_id_, page_id_, shortened_title, title_direction)); } void RenderViewImpl::UpdateEncoding(WebFrame* frame, const std::string& encoding_name) { // Only update main frame's encoding_name. if (webview()->mainFrame() == frame && last_encoding_name_ != encoding_name) { // Save the encoding name for later comparing. last_encoding_name_ = encoding_name; Send(new ViewHostMsg_UpdateEncoding(routing_id_, last_encoding_name_)); } } // Sends the last committed session history state to the browser so it will be // saved before we navigate to a new page. This must be called *before* the // page ID has been updated so we know what it was. void RenderViewImpl::UpdateSessionHistory(WebFrame* frame) { // If we have a valid page ID at this point, then it corresponds to the page // we are navigating away from. Otherwise, this is the first navigation, so // there is no past session history to record. if (page_id_ == -1) return; const WebHistoryItem& item = webview()->mainFrame()->previousHistoryItem(); SendUpdateState(item); } void RenderViewImpl::SendUpdateState(const WebHistoryItem& item) { if (item.isNull()) return; // Don't send state updates for kSwappedOutURL. if (item.urlString() == WebString::fromUTF8(kSwappedOutURL)) return; Send(new ViewHostMsg_UpdateState( routing_id_, page_id_, webkit_glue::HistoryItemToString(item))); } void RenderViewImpl::OpenURL(WebFrame* frame, const GURL& url, const Referrer& referrer, WebNavigationPolicy policy) { ViewHostMsg_OpenURL_Params params; params.url = url; params.referrer = referrer; params.disposition = NavigationPolicyToDisposition(policy); params.frame_id = frame->identifier(); WebDataSource* ds = frame->provisionalDataSource(); if (ds) { params.is_cross_site_redirect = ds->isClientRedirect(); } else { params.is_cross_site_redirect = false; } Send(new ViewHostMsg_OpenURL(routing_id_, params)); } // WebViewDelegate ------------------------------------------------------------ void RenderViewImpl::LoadNavigationErrorPage( WebFrame* frame, const WebURLRequest& failed_request, const WebURLError& error, const std::string& html, bool replace) { std::string alt_html; const std::string* error_html; if (!html.empty()) { error_html = &html; } else { GetContentClient()->renderer()->GetNavigationErrorStrings( failed_request, error, &alt_html, NULL); error_html = &alt_html; } frame->loadHTMLString(*error_html, GURL(kUnreachableWebDataURL), error.unreachableURL, replace); } bool RenderViewImpl::RunJavaScriptMessage(JavaScriptMessageType type, const string16& message, const string16& default_value, const GURL& frame_url, string16* result) { bool success = false; string16 result_temp; if (!result) result = &result_temp; SendAndRunNestedMessageLoop(new ViewHostMsg_RunJavaScriptMessage( routing_id_, message, default_value, frame_url, type, &success, result)); return success; } bool RenderViewImpl::SendAndRunNestedMessageLoop(IPC::SyncMessage* message) { // Before WebKit asks us to show an alert (etc.), it takes care of doing the // equivalent of WebView::willEnterModalLoop. In the case of showModalDialog // it is particularly important that we do not call willEnterModalLoop as // that would defer resource loads for the dialog itself. if (RenderThreadImpl::current()) // Will be NULL during unit tests. RenderThreadImpl::current()->DoNotNotifyWebKitOfModalLoop(); message->EnableMessagePumping(); // Runs a nested message loop. return Send(message); } void RenderViewImpl::GetWindowSnapshot(const WindowSnapshotCallback& callback) { int id = next_snapshot_id_++; pending_snapshots_.insert(std::make_pair(id, callback)); Send(new ViewHostMsg_GetWindowSnapshot(routing_id_, id)); } void RenderViewImpl::OnWindowSnapshotCompleted(const int snapshot_id, const gfx::Size& size, const std::vector& png) { PendingSnapshotMap::iterator it = pending_snapshots_.find(snapshot_id); DCHECK(it != pending_snapshots_.end()); it->second.Run(size, png); pending_snapshots_.erase(it); } // WebKit::WebViewClient ------------------------------------------------------ WebView* RenderViewImpl::createView( WebFrame* creator, const WebURLRequest& request, const WebWindowFeatures& features, const WebString& frame_name, WebNavigationPolicy policy) { // Check to make sure we aren't overloading on popups. if (shared_popup_counter_->data > kMaximumNumberOfUnacknowledgedPopups) return NULL; ViewHostMsg_CreateWindow_Params params; params.opener_id = routing_id_; params.user_gesture = creator->isProcessingUserGesture(); params.window_container_type = WindowFeaturesToContainerType(features); params.session_storage_namespace_id = session_storage_namespace_id_; params.frame_name = frame_name; params.opener_frame_id = creator->identifier(); params.opener_url = creator->document().url(); params.opener_security_origin = creator->document().securityOrigin().toString().utf8(); params.opener_suppressed = creator->willSuppressOpenerInNewFrame(); params.disposition = NavigationPolicyToDisposition(policy); if (!request.isNull()) params.target_url = request.url(); int32 routing_id = MSG_ROUTING_NONE; int32 surface_id = 0; int64 cloned_session_storage_namespace_id; RenderThread::Get()->Send( new ViewHostMsg_CreateWindow(params, &routing_id, &surface_id, &cloned_session_storage_namespace_id)); if (routing_id == MSG_ROUTING_NONE) return NULL; creator->consumeUserGesture(); RenderViewImpl* view = RenderViewImpl::Create( routing_id_, renderer_preferences_, webkit_preferences_, shared_popup_counter_, routing_id, surface_id, cloned_session_storage_namespace_id, frame_name, true, false, 1, screen_info_, accessibility_mode_); view->opened_by_user_gesture_ = params.user_gesture; // Record whether the creator frame is trying to suppress the opener field. view->opener_suppressed_ = params.opener_suppressed; // Copy over the alternate error page URL so we can have alt error pages in // the new render view (we don't need the browser to send the URL back down). view->alternate_error_page_url_ = alternate_error_page_url_; return view->webview(); } WebWidget* RenderViewImpl::createPopupMenu(WebKit::WebPopupType popup_type) { RenderWidget* widget = RenderWidget::Create(routing_id_, popup_type, screen_info_); return widget->webwidget(); } WebExternalPopupMenu* RenderViewImpl::createExternalPopupMenu( const WebPopupMenuInfo& popup_menu_info, WebExternalPopupMenuClient* popup_menu_client) { // An IPC message is sent to the browser to build and display the actual // popup. The user could have time to click a different select by the time // the popup is shown. In that case external_popup_menu_ is non NULL. // By returning NULL in that case, we instruct WebKit to cancel that new // popup. So from the user perspective, only the first one will show, and // will have to close the first one before another one can be shown. if (external_popup_menu_.get()) return NULL; external_popup_menu_.reset( new ExternalPopupMenu(this, popup_menu_info, popup_menu_client)); return external_popup_menu_.get(); } RenderWidgetFullscreenPepper* RenderViewImpl::CreatePepperFullscreenContainer( webkit::ppapi::PluginInstance* plugin) { GURL active_url; if (webview() && webview()->mainFrame()) active_url = GURL(webview()->mainFrame()->document().url()); RenderWidgetFullscreenPepper* widget = RenderWidgetFullscreenPepper::Create( routing_id_, plugin, active_url, screen_info_); widget->show(WebKit::WebNavigationPolicyIgnore); return widget; } WebStorageNamespace* RenderViewImpl::createSessionStorageNamespace( unsigned quota) { CHECK(session_storage_namespace_id_ != dom_storage::kInvalidSessionStorageNamespaceId); return new WebStorageNamespaceImpl(session_storage_namespace_id_); } WebKit::WebCompositorOutputSurface* RenderViewImpl::createOutputSurface() { // Explicitly disable antialiasing for the compositor. As of the time of // this writing, the only platform that supported antialiasing for the // compositor was Mac OS X, because the on-screen OpenGL context creation // code paths on Windows and Linux didn't yet have multisampling support. // Mac OS X essentially always behaves as though it's rendering offscreen. // Multisampling has a heavy cost especially on devices with relatively low // fill rate like most notebooks, and the Mac implementation would need to // be optimized to resolve directly into the IOSurface shared between the // GPU and browser processes. For these reasons and to avoid platform // disparities we explicitly disable antialiasing. WebKit::WebGraphicsContext3D::Attributes attributes; attributes.antialias = false; attributes.shareResources = true; attributes.noAutomaticFlushes = true; WebGraphicsContext3D* context = CreateGraphicsContext3D(attributes); if (!context) return NULL; const CommandLine& command_line = *CommandLine::ForCurrentProcess(); if (command_line.HasSwitch(switches::kEnableSoftwareCompositingGLAdapter)) { // In the absence of a software-based delegating renderer, use this // stopgap adapter class to present the software renderer output using a // 3d context. return new CompositorOutputSurface(routing_id(), NULL, new CompositorSoftwareOutputDeviceGLAdapter(context)); } else return new CompositorOutputSurface(routing_id(), context, NULL); } void RenderViewImpl::didAddMessageToConsole( const WebConsoleMessage& message, const WebString& source_name, unsigned source_line) { logging::LogSeverity log_severity = logging::LOG_VERBOSE; switch (message.level) { case WebConsoleMessage::LevelTip: log_severity = logging::LOG_VERBOSE; break; case WebConsoleMessage::LevelLog: log_severity = logging::LOG_INFO; break; case WebConsoleMessage::LevelWarning: log_severity = logging::LOG_WARNING; break; case WebConsoleMessage::LevelError: log_severity = logging::LOG_ERROR; break; default: NOTREACHED(); } Send(new ViewHostMsg_AddMessageToConsole(routing_id_, static_cast(log_severity), message.text, static_cast(source_line), source_name)); } void RenderViewImpl::printPage(WebFrame* frame) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, PrintPage(frame, handling_input_event_)); } WebKit::WebNotificationPresenter* RenderViewImpl::notificationPresenter() { return notification_provider_; } bool RenderViewImpl::enumerateChosenDirectory( const WebString& path, WebFileChooserCompletion* chooser_completion) { int id = enumeration_completion_id_++; enumeration_completions_[id] = chooser_completion; return Send(new ViewHostMsg_EnumerateDirectory( routing_id_, id, webkit_base::WebStringToFilePath(path))); } void RenderViewImpl::initializeHelperPluginWebFrame( WebKit::WebHelperPlugin* plugin) { plugin->initializeFrame(this); } void RenderViewImpl::didStartLoading() { if (is_loading_) { DVLOG(1) << "didStartLoading called while loading"; return; } is_loading_ = true; Send(new ViewHostMsg_DidStartLoading(routing_id_)); FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidStartLoading()); } void RenderViewImpl::didStopLoading() { if (!is_loading_) { DVLOG(1) << "DidStopLoading called while not loading"; return; } is_loading_ = false; if (pending_frame_tree_update_) { pending_frame_tree_update_ = false; SendUpdatedFrameTree(NULL); } // NOTE: For now we're doing the safest thing, and sending out notification // when done loading. This currently isn't an issue as the favicon is only // displayed when done loading. Ideally we would send notification when // finished parsing the head, but webkit doesn't support that yet. // The feed discovery code would also benefit from access to the head. Send(new ViewHostMsg_DidStopLoading(routing_id_)); if (load_progress_tracker_ != NULL) load_progress_tracker_->DidStopLoading(); FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidStopLoading()); } void RenderViewImpl::didChangeLoadProgress(WebFrame* frame, double load_progress) { if (load_progress_tracker_ != NULL) load_progress_tracker_->DidChangeLoadProgress(frame, load_progress); } bool RenderViewImpl::isSmartInsertDeleteEnabled() { #if defined(OS_MACOSX) return true; #else return false; #endif } bool RenderViewImpl::isSelectTrailingWhitespaceEnabled() { #if defined(OS_WIN) return true; #else return false; #endif } void RenderViewImpl::didChangeSelection(bool is_empty_selection) { if (!handling_input_event_ && !handling_select_range_) return; handling_select_range_ = false; if (is_empty_selection) selection_text_.clear(); SyncSelectionIfRequired(); } void RenderViewImpl::didExecuteCommand(const WebString& command_name) { const std::string& name = UTF16ToUTF8(command_name); if (StartsWithASCII(name, "Move", true) || StartsWithASCII(name, "Insert", true) || StartsWithASCII(name, "Delete", true)) return; RenderThreadImpl::current()->RecordUserMetrics(name); } bool RenderViewImpl::handleCurrentKeyboardEvent() { if (edit_commands_.empty()) return false; WebFrame* frame = webview()->focusedFrame(); if (!frame) return false; EditCommands::iterator it = edit_commands_.begin(); EditCommands::iterator end = edit_commands_.end(); bool did_execute_command = false; for (; it != end; ++it) { // In gtk and cocoa, it's possible to bind multiple edit commands to one // key (but it's the exception). Once one edit command is not executed, it // seems safest to not execute the rest. if (!frame->executeCommand(WebString::fromUTF8(it->name), WebString::fromUTF8(it->value))) break; did_execute_command = true; } return did_execute_command; } void RenderViewImpl::didHandleGestureEvent(const WebGestureEvent& event, bool event_swallowed) { #if defined(OS_ANDROID) if (event.type == WebInputEvent::GestureTap || event.type == WebInputEvent::GestureLongPress) { UpdateTextInputState(SHOW_IME_IF_NEEDED); } #endif FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidHandleGestureEvent(event)); } WebKit::WebColorChooser* RenderViewImpl::createColorChooser( WebKit::WebColorChooserClient* client, const WebKit::WebColor& initial_color) { RendererWebColorChooserImpl* color_chooser = new RendererWebColorChooserImpl(this, client); color_chooser->Open(static_cast(initial_color)); return color_chooser; } bool RenderViewImpl::runFileChooser( const WebKit::WebFileChooserParams& params, WebFileChooserCompletion* chooser_completion) { // Do not open the file dialog in a hidden RenderView. if (is_hidden()) return false; FileChooserParams ipc_params; if (params.directory) ipc_params.mode = FileChooserParams::OpenFolder; else if (params.multiSelect) ipc_params.mode = FileChooserParams::OpenMultiple; else if (params.saveAs) ipc_params.mode = FileChooserParams::Save; else ipc_params.mode = FileChooserParams::Open; ipc_params.title = params.title; ipc_params.default_file_name = webkit_base::WebStringToFilePath(params.initialValue); ipc_params.accept_types.reserve(params.acceptTypes.size()); for (size_t i = 0; i < params.acceptTypes.size(); ++i) ipc_params.accept_types.push_back(params.acceptTypes[i]); #if defined(OS_ANDROID) ipc_params.capture = params.capture; #endif return ScheduleFileChooser(ipc_params, chooser_completion); } void RenderViewImpl::runModalAlertDialog(WebFrame* frame, const WebString& message) { RunJavaScriptMessage(JAVASCRIPT_MESSAGE_TYPE_ALERT, message, string16(), frame->document().url(), NULL); } bool RenderViewImpl::runModalConfirmDialog(WebFrame* frame, const WebString& message) { return RunJavaScriptMessage(JAVASCRIPT_MESSAGE_TYPE_CONFIRM, message, string16(), frame->document().url(), NULL); } bool RenderViewImpl::runModalPromptDialog(WebFrame* frame, const WebString& message, const WebString& default_value, WebString* actual_value) { string16 result; bool ok = RunJavaScriptMessage(JAVASCRIPT_MESSAGE_TYPE_PROMPT, message, default_value, frame->document().url(), &result); if (ok) actual_value->assign(result); return ok; } bool RenderViewImpl::runModalBeforeUnloadDialog( WebFrame* frame, const WebString& message) { // If we are swapping out, we have already run the beforeunload handler. // TODO(creis): Fix OnSwapOut to clear the frame without running beforeunload // at all, to avoid running it twice. if (is_swapped_out_) return true; bool is_reload = false; WebDataSource* ds = frame->provisionalDataSource(); if (ds) is_reload = (ds->navigationType() == WebKit::WebNavigationTypeReload); bool success = false; // This is an ignored return value, but is included so we can accept the same // response as RunJavaScriptMessage. string16 ignored_result; SendAndRunNestedMessageLoop(new ViewHostMsg_RunBeforeUnloadConfirm( routing_id_, frame->document().url(), message, is_reload, &success, &ignored_result)); return success; } void RenderViewImpl::showContextMenu( WebFrame* frame, const WebContextMenuData& data) { ContextMenuParams params(data); // Plugins, e.g. PDF, don't currently update the render view when their // selected text changes, but the context menu params do contain the updated // selection. If that's the case, update the render view's state just prior // to showing the context menu. // TODO(asvitkine): http://crbug.com/152432 string16 selection_text; if (!selection_text_.empty() && !selection_range_.is_empty()) { const int start = selection_range_.GetMin() - selection_text_offset_; const size_t length = selection_range_.length(); if (start >= 0 && start + length <= selection_text_.length()) selection_text = selection_text_.substr(start, length); } if (params.selection_text != selection_text) { selection_text_ = params.selection_text; // TODO(asvitkine): Text offset and range is not available in this case. selection_text_offset_ = 0; selection_range_ = ui::Range(0, selection_text_.length()); Send(new ViewHostMsg_SelectionChanged(routing_id_, selection_text_, selection_text_offset_, selection_range_)); } // frame is NULL if invoked by BlockedPlugin. if (frame) params.frame_id = frame->identifier(); // Serializing a GURL longer than kMaxURLChars will fail, so don't do // it. We replace it with an empty GURL so the appropriate items are disabled // in the context menu. // TODO(jcivelli): http://crbug.com/45160 This prevents us from saving large // data encoded images. We should have a way to save them. if (params.src_url.spec().size() > kMaxURLChars) params.src_url = GURL(); context_menu_node_ = data.node; #if defined(OS_ANDROID) gfx::Rect start_rect; gfx::Rect end_rect; GetSelectionBounds(&start_rect, &end_rect); params.selection_start = gfx::Point(start_rect.x(), start_rect.bottom()) + GetScrollOffset(); params.selection_end = gfx::Point(end_rect.right(), end_rect.bottom()) + GetScrollOffset(); #endif Send(new ViewHostMsg_ContextMenu(routing_id_, params)); FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidRequestShowContextMenu(frame, data)); } void RenderViewImpl::setStatusText(const WebString& text) { } void RenderViewImpl::UpdateTargetURL(const GURL& url, const GURL& fallback_url) { GURL latest_url = url.is_empty() ? fallback_url : url; if (latest_url == target_url_) return; // Tell the browser to display a destination link. if (target_url_status_ == TARGET_INFLIGHT || target_url_status_ == TARGET_PENDING) { // If we have a request in-flight, save the URL to be sent when we // receive an ACK to the in-flight request. We can happily overwrite // any existing pending sends. pending_target_url_ = latest_url; target_url_status_ = TARGET_PENDING; } else { // URLs larger than |kMaxURLChars| cannot be sent through IPC - // see |ParamTraits|. if (latest_url.possibly_invalid_spec().size() > kMaxURLChars) latest_url = GURL(); Send(new ViewHostMsg_UpdateTargetURL(routing_id_, page_id_, latest_url)); target_url_ = latest_url; target_url_status_ = TARGET_INFLIGHT; } } void RenderViewImpl::StartNavStateSyncTimerIfNecessary() { // No need to update state if no page has committed yet. if (page_id_ == -1) return; int delay; if (send_content_state_immediately_) delay = 0; else if (is_hidden()) delay = kDelaySecondsForContentStateSyncHidden; else delay = kDelaySecondsForContentStateSync; if (nav_state_sync_timer_.IsRunning()) { // The timer is already running. If the delay of the timer maches the amount // we want to delay by, then return. Otherwise stop the timer so that it // gets started with the right delay. if (nav_state_sync_timer_.GetCurrentDelay().InSeconds() == delay) return; nav_state_sync_timer_.Stop(); } nav_state_sync_timer_.Start(FROM_HERE, TimeDelta::FromSeconds(delay), this, &RenderViewImpl::SyncNavigationState); } void RenderViewImpl::setMouseOverURL(const WebURL& url) { mouse_over_url_ = GURL(url); UpdateTargetURL(mouse_over_url_, focus_url_); } void RenderViewImpl::setKeyboardFocusURL(const WebURL& url) { focus_url_ = GURL(url); UpdateTargetURL(focus_url_, mouse_over_url_); } void RenderViewImpl::startDragging(WebFrame* frame, const WebDragData& data, WebDragOperationsMask mask, const WebImage& image, const WebPoint& webImageOffset) { WebDropData drop_data(data); drop_data.referrer_policy = frame->document().referrerPolicy(); gfx::Vector2d imageOffset(webImageOffset.x, webImageOffset.y); Send(new DragHostMsg_StartDragging(routing_id_, drop_data, mask, image.getSkBitmap(), imageOffset, possible_drag_event_info_)); } bool RenderViewImpl::acceptsLoadDrops() { return renderer_preferences_.can_accept_load_drops; } void RenderViewImpl::focusNext() { Send(new ViewHostMsg_TakeFocus(routing_id_, false)); } void RenderViewImpl::focusPrevious() { Send(new ViewHostMsg_TakeFocus(routing_id_, true)); } void RenderViewImpl::focusedNodeChanged(const WebNode& node) { Send(new ViewHostMsg_FocusedNodeChanged(routing_id_, IsEditableNode(node))); FOR_EACH_OBSERVER(RenderViewObserver, observers_, FocusedNodeChanged(node)); } void RenderViewImpl::numberOfWheelEventHandlersChanged(unsigned num_handlers) { Send(new ViewHostMsg_DidChangeNumWheelEvents(routing_id_, num_handlers)); } void RenderViewImpl::hasTouchEventHandlers(bool has_handlers) { Send(new ViewHostMsg_HasTouchEventHandlers(routing_id_, has_handlers)); } void RenderViewImpl::didUpdateLayout() { // We don't always want to set up a timer, only if we've been put in that // mode by getting a |ViewMsg_EnablePreferredSizeChangedMode| // message. if (!send_preferred_size_changes_ || !webview()) return; if (check_preferred_size_timer_.IsRunning()) return; check_preferred_size_timer_.Start(FROM_HERE, TimeDelta::FromMilliseconds(0), this, &RenderViewImpl::CheckPreferredSize); } void RenderViewImpl::navigateBackForwardSoon(int offset) { Send(new ViewHostMsg_GoToEntryAtOffset(routing_id_, offset)); } int RenderViewImpl::historyBackListCount() { return history_list_offset_ < 0 ? 0 : history_list_offset_; } int RenderViewImpl::historyForwardListCount() { return history_list_length_ - historyBackListCount() - 1; } void RenderViewImpl::postAccessibilityNotification( const WebAccessibilityObject& obj, WebAccessibilityNotification notification) { if (renderer_accessibility_) { renderer_accessibility_->HandleWebAccessibilityNotification( obj, notification); } } void RenderViewImpl::didUpdateInspectorSetting(const WebString& key, const WebString& value) { Send(new ViewHostMsg_UpdateInspectorSetting(routing_id_, key.utf8(), value.utf8())); } // WebKit::WebWidgetClient ---------------------------------------------------- void RenderViewImpl::didFocus() { // TODO(jcivelli): when https://bugs.webkit.org/show_bug.cgi?id=33389 is fixed // we won't have to test for user gesture anymore and we can // move that code back to render_widget.cc if (webview() && webview()->mainFrame() && webview()->mainFrame()->isProcessingUserGesture()) { Send(new ViewHostMsg_Focus(routing_id_)); } } void RenderViewImpl::didBlur() { // TODO(jcivelli): see TODO above in didFocus(). if (webview() && webview()->mainFrame() && webview()->mainFrame()->isProcessingUserGesture()) { Send(new ViewHostMsg_Blur(routing_id_)); } } // We are supposed to get a single call to Show for a newly created RenderView // that was created via RenderViewImpl::CreateWebView. So, we wait until this // point to dispatch the ShowView message. // // This method provides us with the information about how to display the newly // created RenderView (i.e., as a blocked popup or as a new tab). // void RenderViewImpl::show(WebNavigationPolicy policy) { if (did_show_) { #if defined(OS_ANDROID) // When supports_multiple_windows is disabled, popups are reusing // the same view. In some scenarios, this makes WebKit to call show() twice. if (!webkit_preferences_.supports_multiple_windows) return; #endif NOTREACHED() << "received extraneous Show call"; return; } did_show_ = true; DCHECK(opener_id_ != MSG_ROUTING_NONE); if (GetContentClient()->renderer()->AllowPopup()) opened_by_user_gesture_ = true; // Force new windows to a popup if they were not opened with a user gesture. if (!opened_by_user_gesture_) { // We exempt background tabs for compat with older versions of Chrome. // TODO(darin): This seems bogus. These should have a user gesture, so // we probably don't need this check. if (policy != WebKit::WebNavigationPolicyNewBackgroundTab) policy = WebKit::WebNavigationPolicyNewPopup; } // NOTE: initial_pos_ may still have its default values at this point, but // that's okay. It'll be ignored if disposition is not NEW_POPUP, or the // browser process will impose a default position otherwise. Send(new ViewHostMsg_ShowView(opener_id_, routing_id_, NavigationPolicyToDisposition(policy), initial_pos_, opened_by_user_gesture_)); SetPendingWindowRect(initial_pos_); } void RenderViewImpl::runModal() { DCHECK(did_show_) << "should already have shown the view"; // We must keep WebKit's shared timer running in this case in order to allow // showModalDialog to function properly. // // TODO(darin): WebKit should really be smarter about suppressing events and // timers so that we do not need to manage the shared timer in such a heavy // handed manner. // if (RenderThreadImpl::current()) // Will be NULL during unit tests. RenderThreadImpl::current()->DoNotSuspendWebKitSharedTimer(); SendAndRunNestedMessageLoop(new ViewHostMsg_RunModal( routing_id_, opener_id_)); } bool RenderViewImpl::enterFullScreen() { Send(new ViewHostMsg_ToggleFullscreen(routing_id_, true)); return true; } void RenderViewImpl::exitFullScreen() { Send(new ViewHostMsg_ToggleFullscreen(routing_id_, false)); } bool RenderViewImpl::requestPointerLock() { return mouse_lock_dispatcher_->LockMouse(webwidget_mouse_lock_target_.get()); } void RenderViewImpl::requestPointerUnlock() { mouse_lock_dispatcher_->UnlockMouse(webwidget_mouse_lock_target_.get()); } bool RenderViewImpl::isPointerLocked() { return mouse_lock_dispatcher_->IsMouseLockedTo( webwidget_mouse_lock_target_.get()); } void RenderViewImpl::didActivateCompositor(int input_handler_identifier) { CompositorThread* compositor_thread = RenderThreadImpl::current()->compositor_thread(); if (compositor_thread) compositor_thread->AddInputHandler( routing_id_, input_handler_identifier, AsWeakPtr()); RenderWidget::didActivateCompositor(input_handler_identifier); ProcessAcceleratedPinchZoomFlags(*CommandLine::ForCurrentProcess()); } // WebKit::WebFrameClient ----------------------------------------------------- WebPlugin* RenderViewImpl::createPlugin(WebFrame* frame, const WebPluginParams& params) { WebPlugin* plugin = NULL; if (GetContentClient()->renderer()->OverrideCreatePlugin( this, frame, params, &plugin)) { return plugin; } if (UTF16ToASCII(params.mimeType) == kBrowserPluginMimeType) { return browser_plugin_manager()->CreateBrowserPlugin(this, frame, params); } webkit::WebPluginInfo info; std::string mime_type; bool found = GetPluginInfo(params.url, frame->top()->document().url(), params.mimeType.utf8(), &info, &mime_type); if (!found) return NULL; WebPluginParams params_to_use = params; params_to_use.mimeType = WebString::fromUTF8(mime_type); return CreatePlugin(frame, info, params_to_use); } WebSharedWorker* RenderViewImpl::createSharedWorker( WebFrame* frame, const WebURL& url, const WebString& name, unsigned long long document_id) { int route_id = MSG_ROUTING_NONE; bool exists = false; bool url_mismatch = false; ViewHostMsg_CreateWorker_Params params; params.url = url; params.name = name; params.document_id = document_id; params.render_view_route_id = routing_id_; params.route_id = MSG_ROUTING_NONE; params.script_resource_appcache_id = 0; Send(new ViewHostMsg_LookupSharedWorker( params, &exists, &route_id, &url_mismatch)); if (url_mismatch) { return NULL; } else { return new WebSharedWorkerProxy(RenderThreadImpl::current(), document_id, exists, route_id, routing_id_); } } WebMediaPlayer* RenderViewImpl::createMediaPlayer( WebFrame* frame, const WebKit::WebURL& url, WebMediaPlayerClient* client) { FOR_EACH_OBSERVER( RenderViewObserver, observers_, WillCreateMediaPlayer(frame, client)); const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); #if defined(ENABLE_WEBRTC) // TODO(wjia): when all patches related to WebMediaPlayerMS have been // landed, remove the switch. Refer to crbug.com/142988. if (!cmd_line->HasSwitch(switches::kDisableWebMediaPlayerMS) && MediaStreamImpl::CheckMediaStream(url)) { EnsureMediaStreamImpl(); return new webkit_media::WebMediaPlayerMS( frame, client, AsWeakPtr(), media_stream_impl_, new RenderMediaLog()); } #endif #if defined(OS_ANDROID) WebGraphicsContext3D* resource_context = GetWebView()->sharedGraphicsContext3D(); GpuChannelHost* gpu_channel_host = RenderThreadImpl::current()->EstablishGpuChannelSync( CAUSE_FOR_GPU_LAUNCH_VIDEODECODEACCELERATOR_INITIALIZE); if (!gpu_channel_host) { LOG(ERROR) << "Failed to establish GPU channel for media player"; return NULL; } if (cmd_line->HasSwitch(switches::kMediaPlayerInRenderProcess)) { if (!media_bridge_manager_.get()) { media_bridge_manager_.reset( new webkit_media::MediaPlayerBridgeManagerImpl(1)); } return new webkit_media::WebMediaPlayerInProcessAndroid( frame, client, cookieJar(frame), media_player_manager_.get(), media_bridge_manager_.get(), new StreamTextureFactoryImpl( resource_context, gpu_channel_host, routing_id_), cmd_line->HasSwitch(switches::kDisableMediaHistoryLogging)); } if (!media_player_proxy_) { media_player_proxy_ = new WebMediaPlayerProxyImplAndroid( this, media_player_manager_.get()); } return new webkit_media::WebMediaPlayerImplAndroid( frame, client, media_player_manager_.get(), media_player_proxy_, new StreamTextureFactoryImpl( resource_context, gpu_channel_host, routing_id_)); #endif media::MessageLoopFactory* message_loop_factory = new media::MessageLoopFactory(); media::FilterCollection* collection = new media::FilterCollection(); RenderMediaLog* render_media_log = new RenderMediaLog(); RenderAudioSourceProvider* audio_source_provider = NULL; // |audio_source_provider| "provides" audio to WebKit and is a sink from the // perspective of the audio renderer. if (!cmd_line->HasSwitch(switches::kDisableAudio)) { audio_source_provider = new RenderAudioSourceProvider(routing_id_); } WebGraphicsContext3DCommandBufferImpl* context3d = NULL; if (!cmd_line->HasSwitch(switches::kDisableAcceleratedVideoDecode)) context3d = RenderThreadImpl::current()->GetGpuVDAContext3D(); if (context3d) { scoped_refptr factories_loop = RenderThreadImpl::current()->compositor_thread() ? RenderThreadImpl::current()->compositor_thread()->GetWebThread() ->message_loop()->message_loop_proxy() : base::MessageLoopProxy::current(); GpuChannelHost* gpu_channel_host = RenderThreadImpl::current()->EstablishGpuChannelSync( CAUSE_FOR_GPU_LAUNCH_VIDEODECODEACCELERATOR_INITIALIZE); collection->GetVideoDecoders()->push_back(new media::GpuVideoDecoder( message_loop_factory->GetMessageLoop( media::MessageLoopFactory::kPipeline), factories_loop, new RendererGpuVideoDecoderFactories( gpu_channel_host, factories_loop, context3d))); } WebMediaPlayer* media_player = GetContentClient()->renderer()->OverrideCreateWebMediaPlayer( this, frame, client, AsWeakPtr(), collection, audio_source_provider, audio_source_provider, message_loop_factory, media_stream_impl_, render_media_log); if (!media_player) { media_player = new webkit_media::WebMediaPlayerImpl( frame, client, AsWeakPtr(), collection, audio_source_provider, audio_source_provider, message_loop_factory, media_stream_impl_, render_media_log); } return media_player; } WebApplicationCacheHost* RenderViewImpl::createApplicationCacheHost( WebFrame* frame, WebApplicationCacheHostClient* client) { if (!frame || !frame->view()) return NULL; return new RendererWebApplicationCacheHostImpl( FromWebView(frame->view()), client, RenderThreadImpl::current()->appcache_dispatcher()->backend_proxy()); } WebCookieJar* RenderViewImpl::cookieJar(WebFrame* frame) { return &cookie_jar_; } void RenderViewImpl::didCreateFrame(WebFrame* parent, WebFrame* child) { if (!updating_frame_tree_) SendUpdatedFrameTree(NULL); } void RenderViewImpl::didDisownOpener(WebKit::WebFrame* frame) { // We should only hear this from the top-level frame, because subframes do not // have openers. CHECK(!frame->parent()); // We only need to notify the browser if the active frame clears its opener. // We can ignore cases where a swapped out frame clears its opener after // hearing about it from the browser. if (is_swapped_out_) return; // Notify WebContents and all its swapped out RenderViews. Send(new ViewHostMsg_DidDisownOpener(routing_id_)); } void RenderViewImpl::frameDetached(WebFrame* frame) { if (is_loading_) { pending_frame_tree_update_ = true; // Make sure observers are notified, even if we return right away. FOR_EACH_OBSERVER(RenderViewObserver, observers_, FrameDetached(frame)); return; } if (!updating_frame_tree_) SendUpdatedFrameTree(frame); FOR_EACH_OBSERVER(RenderViewObserver, observers_, FrameDetached(frame)); } void RenderViewImpl::willClose(WebFrame* frame) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, FrameWillClose(frame)); } void RenderViewImpl::loadURLExternally( WebFrame* frame, const WebURLRequest& request, WebNavigationPolicy policy) { loadURLExternally(frame, request, policy, WebString()); } void RenderViewImpl::Repaint(const gfx::Size& size) { OnMsgRepaint(size); } void RenderViewImpl::SetEditCommandForNextKeyEvent(const std::string& name, const std::string& value) { EditCommands edit_commands; edit_commands.push_back(EditCommand(name, value)); OnSetEditCommandsForNextKeyEvent(edit_commands); } void RenderViewImpl::ClearEditCommands() { edit_commands_.clear(); } SSLStatus RenderViewImpl::GetSSLStatusOfFrame(WebKit::WebFrame* frame) const { SSLStatus ssl_status; DocumentState* doc_state = DocumentState::FromDataSource(frame->dataSource()); if (doc_state && !doc_state->security_info().empty()) { DeserializeSecurityInfo(doc_state->security_info(), &ssl_status.cert_id, &ssl_status.cert_status, &ssl_status.security_bits, &ssl_status.connection_status); } return ssl_status; } void RenderViewImpl::loadURLExternally( WebFrame* frame, const WebURLRequest& request, WebNavigationPolicy policy, const WebString& suggested_name) { Referrer referrer( GURL(request.httpHeaderField(WebString::fromUTF8("Referer"))), GetReferrerPolicyFromRequest(frame, request)); if (policy == WebKit::WebNavigationPolicyDownload) { Send(new ViewHostMsg_DownloadUrl(routing_id_, request.url(), referrer, suggested_name)); } else { OpenURL(frame, request.url(), referrer, policy); } } WebNavigationPolicy RenderViewImpl::decidePolicyForNavigation( WebFrame* frame, const WebURLRequest& request, WebNavigationType type, const WebNode&, WebNavigationPolicy default_policy, bool is_redirect) { if (request.url() != GURL(kSwappedOutURL) && GetContentClient()->renderer()->HandleNavigation(frame, request, type, default_policy, is_redirect)) { return WebKit::WebNavigationPolicyIgnore; } Referrer referrer( GURL(request.httpHeaderField(WebString::fromUTF8("Referer"))), GetReferrerPolicyFromRequest(frame, request)); if (is_swapped_out_) { if (request.url() != GURL(kSwappedOutURL)) { // Targeted links may try to navigate a swapped out frame. Allow the // browser process to navigate the tab instead. Note that it is also // possible for non-targeted navigations (from this view) to arrive // here just after we are swapped out. It's ok to send them to the // browser, as long as they're for the top level frame. // TODO(creis): Ensure this supports targeted form submissions when // fixing http://crbug.com/101395. if (frame->parent() == NULL) { OpenURL(frame, request.url(), referrer, default_policy); return WebKit::WebNavigationPolicyIgnore; // Suppress the load here. } // We should otherwise ignore in-process iframe navigations, if they // arrive just after we are swapped out. return WebKit::WebNavigationPolicyIgnore; } // Allow kSwappedOutURL to complete. return default_policy; } // Webkit is asking whether to navigate to a new URL. // This is fine normally, except if we're showing UI from one security // context and they're trying to navigate to a different context. const GURL& url = request.url(); // A content initiated navigation may have originated from a link-click, // script, drag-n-drop operation, etc. bool is_content_initiated = DocumentState::FromDataSource(frame->provisionalDataSource())-> navigation_state()->is_content_initiated(); // Experimental: // If --enable-strict-site-isolation or --site-per-process is enabled, send // all top-level navigations to the browser to let it swap processes when // crossing site boundaries. This is currently expected to break some script // calls and navigations, such as form submissions. const CommandLine& command_line = *CommandLine::ForCurrentProcess(); bool force_swap_due_to_flag = command_line.HasSwitch(switches::kEnableStrictSiteIsolation) || command_line.HasSwitch(switches::kSitePerProcess); if (force_swap_due_to_flag && !frame->parent() && (is_content_initiated || is_redirect)) { WebString origin_str = frame->document().securityOrigin().toString(); GURL frame_url(origin_str.utf8().data()); // TODO(cevans): revisit whether this site check is still necessary once // crbug.com/101395 is fixed. if (!net::RegistryControlledDomainService::SameDomainOrHost(frame_url, url) || frame_url.scheme() != url.scheme()) { OpenURL(frame, url, referrer, default_policy); return WebKit::WebNavigationPolicyIgnore; } } // If the browser is interested, then give it a chance to look at the request. if (is_content_initiated) { bool browser_handles_request = renderer_preferences_.browser_handles_non_local_top_level_requests && IsNonLocalTopLevelNavigation(url, frame, type); if (!browser_handles_request) { browser_handles_request = renderer_preferences_.browser_handles_all_top_level_requests && IsTopLevelNavigation(frame); } if (browser_handles_request) { // Reset these counters as the RenderView could be reused for the next // navigation. page_id_ = -1; last_page_id_sent_to_browser_ = -1; OpenURL(frame, url, referrer, default_policy); return WebKit::WebNavigationPolicyIgnore; // Suppress the load here. } } // Use the frame's original request's URL rather than the document's URL for // subsequent checks. For a popup, the document's URL may become the opener // window's URL if the opener has called document.write(). // See http://crbug.com/93517. GURL old_url(frame->dataSource()->request().url()); // Detect when we're crossing a permission-based boundary (e.g. into or out of // an extension or app origin, leaving a WebUI page, etc). We only care about // top-level navigations (not iframes). But we sometimes navigate to // about:blank to clear a tab, and we want to still allow that. // // Note: this is known to break POST submissions when crossing process // boundaries until http://crbug.com/101395 is fixed. This is better for // security than loading a WebUI, extension or app page in the wrong process. // POST requests don't work because this mechanism does not preserve form // POST data. We will need to send the request's httpBody data up to the // browser process, and issue a special POST navigation in WebKit (via // FrameLoader::loadFrameRequest). See ResourceDispatcher and WebURLLoaderImpl // for examples of how to send the httpBody data. if (!frame->parent() && is_content_initiated && !url.SchemeIs(chrome::kAboutScheme)) { bool send_referrer = false; // All navigations to WebUI URLs or within WebUI-enabled RenderProcesses // must be handled by the browser process so that the correct bindings and // data sources can be registered. // Similarly, navigations to view-source URLs or within ViewSource mode // must be handled by the browser process (except for reloads - those are // safe to leave within the renderer). // Lastly, access to file:// URLs from non-file:// URL pages must be // handled by the browser so that ordinary renderer processes don't get // blessed with file permissions. int cumulative_bindings = RenderProcess::current()->GetEnabledBindings(); bool is_initial_navigation = page_id_ == -1; bool should_fork = GetContentClient()->HasWebUIScheme(url) || (cumulative_bindings & BINDINGS_POLICY_WEB_UI) || url.SchemeIs(chrome::kViewSourceScheme) || (frame->isViewSourceModeEnabled() && type != WebKit::WebNavigationTypeReload); if (!should_fork && url.SchemeIs(chrome::kFileScheme)) { // Fork non-file to file opens. Check the opener URL if this is the // initial navigation in a newly opened window. GURL source_url(old_url); if (is_initial_navigation && source_url.is_empty() && frame->opener()) source_url = frame->opener()->top()->document().url(); DCHECK(!source_url.is_empty()); should_fork = !source_url.SchemeIs(chrome::kFileScheme); } if (!should_fork) { // Give the embedder a chance. // For now, we skip this for POST submissions. This is because // http://crbug.com/101395 is more likely to cause compatibility issues // with hosted apps and extensions than WebUI pages. We will remove this // check when cross-process POST submissions are supported. if (request.httpMethod() == "GET") { should_fork = GetContentClient()->renderer()->ShouldFork( frame, url, is_initial_navigation, &send_referrer); } } if (should_fork) { OpenURL( frame, url, send_referrer ? referrer : Referrer(), default_policy); return WebKit::WebNavigationPolicyIgnore; // Suppress the load here. } } // Detect when a page is "forking" a new tab that can be safely rendered in // its own process. This is done by sites like Gmail that try to open links // in new windows without script connections back to the original page. We // treat such cases as browser navigations (in which we will create a new // renderer for a cross-site navigation), rather than WebKit navigations. // // We use the following heuristic to decide whether to fork a new page in its // own process: // The parent page must open a new tab to about:blank, set the new tab's // window.opener to null, and then redirect the tab to a cross-site URL using // JavaScript. // // TODO(creis): Deprecate this logic once we can rely on rel=noreferrer // (see below). bool is_fork = // Must start from a tab showing about:blank, which is later redirected. old_url == GURL(chrome::kAboutBlankURL) && // Must be the first real navigation of the tab. historyBackListCount() < 1 && historyForwardListCount() < 1 && // The parent page must have set the child's window.opener to null before // redirecting to the desired URL. frame->opener() == NULL && // Must be a top-level frame. frame->parent() == NULL && // Must not have issued the request from this page. is_content_initiated && // Must be targeted at the current tab. default_policy == WebKit::WebNavigationPolicyCurrentTab && // Must be a JavaScript navigation, which appears as "other". type == WebKit::WebNavigationTypeOther; if (is_fork) { // Open the URL via the browser, not via WebKit. OpenURL(frame, url, Referrer(), default_policy); return WebKit::WebNavigationPolicyIgnore; } return default_policy; } bool RenderViewImpl::canHandleRequest( WebFrame* frame, const WebURLRequest& request) { // We allow WebKit to think that everything can be handled even though // browser-side we limit what we load. return true; } WebURLError RenderViewImpl::cannotHandleRequestError( WebFrame* frame, const WebURLRequest& request) { NOTREACHED(); // Since we said we can handle all requests. return WebURLError(); } WebURLError RenderViewImpl::cancelledError( WebFrame* frame, const WebURLRequest& request) { WebURLError error; error.domain = WebString::fromUTF8(net::kErrorDomain); error.reason = net::ERR_ABORTED; error.unreachableURL = request.url(); return error; } void RenderViewImpl::unableToImplementPolicyWithError( WebFrame*, const WebURLError&) { NOTREACHED(); // Since we said we can handle all requests. } void RenderViewImpl::willSendSubmitEvent(WebKit::WebFrame* frame, const WebKit::WebFormElement& form) { // Some login forms have onSubmit handlers that put a hash of the password // into a hidden field and then clear the password. (Issue 28910.) // This method gets called before any of those handlers run, so save away // a copy of the password in case it gets lost. DocumentState* document_state = DocumentState::FromDataSource(frame->dataSource()); document_state->set_password_form_data(CreatePasswordForm(form)); } void RenderViewImpl::willSubmitForm(WebFrame* frame, const WebFormElement& form) { DocumentState* document_state = DocumentState::FromDataSource(frame->provisionalDataSource()); NavigationState* navigation_state = document_state->navigation_state(); if (navigation_state->transition_type() == PAGE_TRANSITION_LINK) navigation_state->set_transition_type(PAGE_TRANSITION_FORM_SUBMIT); // Save these to be processed when the ensuing navigation is committed. WebSearchableFormData web_searchable_form_data(form); document_state->set_searchable_form_url(web_searchable_form_data.url()); document_state->set_searchable_form_encoding( web_searchable_form_data.encoding().utf8()); scoped_ptr password_form_data = CreatePasswordForm(form); // In order to save the password that the user actually typed and not one // that may have gotten transformed by the site prior to submit, recover it // from the form contents already stored by |willSendSubmitEvent| into the // dataSource's NavigationState (as opposed to the provisionalDataSource's, // which is what we're storing into now.) if (password_form_data.get()) { DocumentState* old_document_state = DocumentState::FromDataSource(frame->dataSource()); if (old_document_state) { PasswordForm* old_form_data = old_document_state->password_form_data(); if (old_form_data && old_form_data->action == password_form_data->action) password_form_data->password_value = old_form_data->password_value; } } document_state->set_password_form_data(password_form_data.Pass()); FOR_EACH_OBSERVER( RenderViewObserver, observers_, WillSubmitForm(frame, form)); } void RenderViewImpl::willPerformClientRedirect( WebFrame* frame, const WebURL& from, const WebURL& to, double interval, double fire_time) { // Replace any occurrences of swappedout:// with about:blank. const WebURL& blank_url = GURL(chrome::kAboutBlankURL); FOR_EACH_OBSERVER( RenderViewObserver, observers_, WillPerformClientRedirect(frame, from == GURL(kSwappedOutURL) ? blank_url : from, to, interval, fire_time)); } void RenderViewImpl::didCancelClientRedirect(WebFrame* frame) { FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidCancelClientRedirect(frame)); } void RenderViewImpl::didCompleteClientRedirect( WebFrame* frame, const WebURL& from) { // Replace any occurrences of swappedout:// with about:blank. const WebURL& blank_url = GURL(chrome::kAboutBlankURL); if (!frame->parent()) { WebDataSource* ds = frame->provisionalDataSource(); // If there's no provisional data source, it's a reference fragment // navigation. completed_client_redirect_src_ = Referrer( from == GURL(kSwappedOutURL) ? blank_url : from, ds ? GetReferrerPolicyFromRequest(frame, ds->request()) : frame->document().referrerPolicy()); } FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidCompleteClientRedirect( frame, from == GURL(kSwappedOutURL) ? blank_url : from)); } void RenderViewImpl::didCreateDataSource(WebFrame* frame, WebDataSource* ds) { bool content_initiated = !pending_navigation_params_.get(); DocumentState* document_state = DocumentState::FromDataSource(ds); if (!document_state) { document_state = new DocumentState; ds->setExtraData(document_state); if (!content_initiated) PopulateDocumentStateFromPending(document_state); } // Carry over the user agent override flag, if it exists. if (content_initiated && webview() && webview()->mainFrame() && webview()->mainFrame()->dataSource()) { DocumentState* old_document_state = DocumentState::FromDataSource(webview()->mainFrame()->dataSource()); if (old_document_state) { document_state->set_is_overriding_user_agent( old_document_state->is_overriding_user_agent()); } } // The rest of RenderView assumes that a WebDataSource will always have a // non-null NavigationState. if (content_initiated) { document_state->set_navigation_state( NavigationState::CreateContentInitiated()); } else { document_state->set_navigation_state(CreateNavigationStateFromPending()); pending_navigation_params_.reset(); } // DocumentState::referred_by_prefetcher_ is true if we are // navigating from a page that used prefetching using a link on that // page. We are early enough in the request process here that we // can still see the DocumentState of the previous page and set // this value appropriately. // TODO(gavinp): catch the important case of navigation in a new // renderer process. if (webview()) { if (WebFrame* old_frame = webview()->mainFrame()) { const WebURLRequest& original_request = ds->originalRequest(); const GURL referrer( original_request.httpHeaderField(WebString::fromUTF8("Referer"))); if (!referrer.is_empty() && DocumentState::FromDataSource( old_frame->dataSource())->was_prefetcher()) { for (; old_frame; old_frame = old_frame->traverseNext(false)) { WebDataSource* old_frame_ds = old_frame->dataSource(); if (old_frame_ds && referrer == GURL(old_frame_ds->request().url())) { document_state->set_was_referred_by_prefetcher(true); break; } } } } } if (content_initiated) { const WebURLRequest& request = ds->request(); switch (request.cachePolicy()) { case WebURLRequest::UseProtocolCachePolicy: // normal load. document_state->set_load_type(DocumentState::LINK_LOAD_NORMAL); break; case WebURLRequest::ReloadIgnoringCacheData: // reload. document_state->set_load_type(DocumentState::LINK_LOAD_RELOAD); break; case WebURLRequest::ReturnCacheDataElseLoad: // allow stale data. document_state->set_load_type( DocumentState::LINK_LOAD_CACHE_STALE_OK); break; case WebURLRequest::ReturnCacheDataDontLoad: // Don't re-post. document_state->set_load_type(DocumentState::LINK_LOAD_CACHE_ONLY); break; } } FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidCreateDataSource(frame, ds)); } void RenderViewImpl::PopulateDocumentStateFromPending( DocumentState* document_state) { const ViewMsg_Navigate_Params& params = *pending_navigation_params_.get(); document_state->set_request_time(params.request_time); if (!params.url.SchemeIs(chrome::kJavaScriptScheme) && params.navigation_type == ViewMsg_Navigate_Type::RESTORE) { // We're doing a load of a page that was restored from the last session. By // default this prefers the cache over loading (LOAD_PREFERRING_CACHE) which // can result in stale data for pages that are set to expire. We explicitly // override that by setting the policy here so that as necessary we load // from the network. document_state->set_cache_policy_override( WebURLRequest::UseProtocolCachePolicy); } if (IsReload(params)) document_state->set_load_type(DocumentState::RELOAD); else if (!params.state.empty()) document_state->set_load_type(DocumentState::HISTORY_LOAD); else document_state->set_load_type(DocumentState::NORMAL_LOAD); document_state->set_referrer_policy(params.referrer.policy); document_state->set_is_overriding_user_agent(params.is_overriding_user_agent); document_state->set_must_reset_scroll_and_scale_state( params.navigation_type == ViewMsg_Navigate_Type::RELOAD_ORIGINAL_REQUEST_URL); document_state->set_can_load_local_resources(params.can_load_local_resources); } NavigationState* RenderViewImpl::CreateNavigationStateFromPending() { const ViewMsg_Navigate_Params& params = *pending_navigation_params_.get(); NavigationState* navigation_state = NULL; // A navigation resulting from loading a javascript URL should not be treated // as a browser initiated event. Instead, we want it to look as if the page // initiated any load resulting from JS execution. if (!params.url.SchemeIs(chrome::kJavaScriptScheme)) { navigation_state = NavigationState::CreateBrowserInitiated( params.page_id, params.pending_history_list_offset, params.transition); navigation_state->set_transferred_request_child_id( params.transferred_request_child_id); navigation_state->set_transferred_request_request_id( params.transferred_request_request_id); navigation_state->set_allow_download(params.allow_download); } else { navigation_state = NavigationState::CreateContentInitiated(); } return navigation_state; } void RenderViewImpl::ProcessViewLayoutFlags(const CommandLine& command_line) { bool enable_viewport = command_line.HasSwitch(switches::kEnableViewport); bool enable_fixed_layout = command_line.HasSwitch(switches::kEnableFixedLayout); webview()->enableFixedLayoutMode(enable_fixed_layout || enable_viewport); webview()->settings()->setFixedElementsLayoutRelativeToFrame(true); if (enable_viewport) { webview()->settings()->setViewportEnabled(true); } else if (enable_fixed_layout) { std::string str = command_line.GetSwitchValueASCII(switches::kEnableFixedLayout); std::vector tokens; base::SplitString(str, ',', &tokens); if (tokens.size() == 2) { int width, height; if (base::StringToInt(tokens[0], &width) && base::StringToInt(tokens[1], &height)) webview()->setFixedLayoutSize(WebSize(width, height)); } } ProcessAcceleratedPinchZoomFlags(command_line); } void RenderViewImpl::ProcessAcceleratedPinchZoomFlags( const CommandLine& command_line) { if (!webview()->isAcceleratedCompositingActive()) return; bool enable_viewport = command_line.HasSwitch(switches::kEnableViewport); bool enable_pinch = command_line.HasSwitch(switches::kEnablePinch); if (enable_viewport) return; if (enable_pinch) webview()->setPageScaleFactorLimits(1, 4); else webview()->setPageScaleFactorLimits(1, 1); } void RenderViewImpl::didStartProvisionalLoad(WebFrame* frame) { WebDataSource* ds = frame->provisionalDataSource(); DocumentState* document_state = DocumentState::FromDataSource(ds); // We should only navigate to swappedout:// when is_swapped_out_ is true. CHECK((ds->request().url() != GURL(kSwappedOutURL)) || is_swapped_out_) << "Heard swappedout:// when not swapped out."; // Update the request time if WebKit has better knowledge of it. if (document_state->request_time().is_null()) { double event_time = ds->triggeringEventTime(); if (event_time != 0.0) document_state->set_request_time(Time::FromDoubleT(event_time)); } // Start time is only set after request time. document_state->set_start_load_time(Time::Now()); bool is_top_most = !frame->parent(); if (is_top_most) { navigation_gesture_ = frame->isProcessingUserGesture() ? NavigationGestureUser : NavigationGestureAuto; // Make sure redirect tracking state is clear for the new load. completed_client_redirect_src_ = Referrer(); } else if (frame->parent()->isLoading()) { // Take note of AUTO_SUBFRAME loads here, so that we can know how to // load an error page. See didFailProvisionalLoad. document_state->navigation_state()->set_transition_type( PAGE_TRANSITION_AUTO_SUBFRAME); } FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidStartProvisionalLoad(frame)); Send(new ViewHostMsg_DidStartProvisionalLoadForFrame( routing_id_, frame->identifier(), frame->parent() ? frame->parent()->identifier() : -1, is_top_most, ds->request().url())); } void RenderViewImpl::didReceiveServerRedirectForProvisionalLoad( WebFrame* frame) { if (frame->parent()) return; // Received a redirect on the main frame. WebDataSource* data_source = frame->provisionalDataSource(); if (!data_source) { // Should only be invoked when we have a data source. NOTREACHED(); return; } std::vector redirects; GetRedirectChain(data_source, &redirects); if (redirects.size() >= 2) { Send(new ViewHostMsg_DidRedirectProvisionalLoad(routing_id_, page_id_, redirects[redirects.size() - 2], redirects.back())); } } void RenderViewImpl::didFailProvisionalLoad(WebFrame* frame, const WebURLError& error) { // Notify the browser that we failed a provisional load with an error. // // Note: It is important this notification occur before DidStopLoading so the // SSL manager can react to the provisional load failure before being // notified the load stopped. // WebDataSource* ds = frame->provisionalDataSource(); DCHECK(ds); const WebURLRequest& failed_request = ds->request(); FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidFailProvisionalLoad(frame, error)); bool show_repost_interstitial = (error.reason == net::ERR_CACHE_MISS && EqualsASCII(failed_request.httpMethod(), "POST")); ViewHostMsg_DidFailProvisionalLoadWithError_Params params; params.frame_id = frame->identifier(); params.is_main_frame = !frame->parent(); params.error_code = error.reason; GetContentClient()->renderer()->GetNavigationErrorStrings( failed_request, error, NULL, ¶ms.error_description); params.url = error.unreachableURL; params.showing_repost_interstitial = show_repost_interstitial; Send(new ViewHostMsg_DidFailProvisionalLoadWithError( routing_id_, params)); // Don't display an error page if this is simply a cancelled load. Aside // from being dumb, WebCore doesn't expect it and it will cause a crash. if (error.reason == net::ERR_ABORTED) return; // Make sure we never show errors in view source mode. frame->enableViewSourceMode(false); DocumentState* document_state = DocumentState::FromDataSource(ds); NavigationState* navigation_state = document_state->navigation_state(); // If this is a failed back/forward/reload navigation, then we need to do a // 'replace' load. This is necessary to avoid messing up session history. // Otherwise, we do a normal load, which simulates a 'go' navigation as far // as session history is concerned. // // AUTO_SUBFRAME loads should always be treated as loads that do not advance // the page id. // bool replace = navigation_state->pending_page_id() != -1 || navigation_state->transition_type() == PAGE_TRANSITION_AUTO_SUBFRAME; // If we failed on a browser initiated request, then make sure that our error // page load is regarded as the same browser initiated request. if (!navigation_state->is_content_initiated()) { pending_navigation_params_.reset(new ViewMsg_Navigate_Params); pending_navigation_params_->page_id = navigation_state->pending_page_id(); pending_navigation_params_->pending_history_list_offset = navigation_state->pending_history_list_offset(); pending_navigation_params_->transition = navigation_state->transition_type(); pending_navigation_params_->request_time = document_state->request_time(); } // Provide the user with a more helpful error page? if (MaybeLoadAlternateErrorPage(frame, error, replace)) return; // Fallback to a local error page. LoadNavigationErrorPage(frame, failed_request, error, std::string(), replace); } void RenderViewImpl::didReceiveDocumentData( WebFrame* frame, const char* data, size_t data_len, bool& prevent_default) { DocumentState* document_state = DocumentState::FromDataSource(frame->dataSource()); document_state->set_use_error_page(false); } void RenderViewImpl::didCommitProvisionalLoad(WebFrame* frame, bool is_new_navigation) { DocumentState* document_state = DocumentState::FromDataSource(frame->dataSource()); NavigationState* navigation_state = document_state->navigation_state(); if (document_state->commit_load_time().is_null()) document_state->set_commit_load_time(Time::Now()); if (document_state->must_reset_scroll_and_scale_state()) { #if defined(OS_ANDROID) // crbug.com/153907 webview()->resetScrollAndScaleState(); #endif document_state->set_must_reset_scroll_and_scale_state(false); } if (is_new_navigation) { // When we perform a new navigation, we need to update the last committed // session history entry with state for the page we are leaving. UpdateSessionHistory(frame); // We bump our Page ID to correspond with the new session history entry. page_id_ = next_page_id_++; // Don't update history_page_ids_ (etc) for kSwappedOutURL, since // we don't want to forget the entry that was there, and since we will // never come back to kSwappedOutURL. Note that we have to call // UpdateSessionHistory and update page_id_ even in this case, so that // the current entry gets a state update and so that we don't send a // state update to the wrong entry when we swap back in. if (GetLoadingUrl(frame) != GURL(kSwappedOutURL)) { // Advance our offset in session history, applying the length limit. // There is now no forward history. history_list_offset_++; if (history_list_offset_ >= kMaxSessionHistoryEntries) history_list_offset_ = kMaxSessionHistoryEntries - 1; history_list_length_ = history_list_offset_ + 1; history_page_ids_.resize(history_list_length_, -1); history_page_ids_[history_list_offset_] = page_id_; } } else { // Inspect the navigation_state on this frame to see if the navigation // corresponds to a session history navigation... Note: |frame| may or // may not be the toplevel frame, but for the case of capturing session // history, the first committed frame suffices. We keep track of whether // we've seen this commit before so that only capture session history once // per navigation. // // Note that we need to check if the page ID changed. In the case of a // reload, the page ID doesn't change, and UpdateSessionHistory gets the // previous URL and the current page ID, which would be wrong. if (navigation_state->pending_page_id() != -1 && navigation_state->pending_page_id() != page_id_ && !navigation_state->request_committed()) { // This is a successful session history navigation! UpdateSessionHistory(frame); page_id_ = navigation_state->pending_page_id(); history_list_offset_ = navigation_state->pending_history_list_offset(); // If the history list is valid, our list of page IDs should be correct. DCHECK(history_list_length_ <= 0 || history_list_offset_ < 0 || history_list_offset_ >= history_list_length_ || history_page_ids_[history_list_offset_] == page_id_); } } FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitProvisionalLoad(frame, is_new_navigation)); // Remember that we've already processed this request, so we don't update // the session history again. We do this regardless of whether this is // a session history navigation, because if we attempted a session history // navigation without valid HistoryItem state, WebCore will think it is a // new navigation. navigation_state->set_request_committed(true); UpdateURL(frame); // If this committed load was initiated by a client redirect, we're // at the last stop now, so clear it. completed_client_redirect_src_ = Referrer(); // Check whether we have new encoding name. UpdateEncoding(frame, frame->view()->pageEncoding().utf8()); if (!frame->parent()) { // Only for top frames. RenderThreadImpl* render_thread_impl = RenderThreadImpl::current(); if (render_thread_impl) { // Can be NULL in tests. render_thread_impl->histogram_customizer()-> RenderViewNavigatedToHost(GURL(GetLoadingUrl(frame)).host(), g_view_map.Get().size()); } } } void RenderViewImpl::didClearWindowObject(WebFrame* frame) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidClearWindowObject(frame)); if (enabled_bindings_ & BINDINGS_POLICY_DOM_AUTOMATION) { if (!dom_automation_controller_.get()) dom_automation_controller_.reset(new DomAutomationController()); dom_automation_controller_->set_message_sender( static_cast(this)); dom_automation_controller_->set_routing_id(routing_id()); dom_automation_controller_->BindToJavascript(frame, "domAutomationController"); } InjectDoNotTrackBindings(frame); } void RenderViewImpl::didCreateDocumentElement(WebFrame* frame) { // Notify the browser about non-blank documents loading in the top frame. GURL url = frame->document().url(); if (url.is_valid() && url.spec() != chrome::kAboutBlankURL) { if (frame == webview()->mainFrame()) Send(new ViewHostMsg_DocumentAvailableInMainFrame(routing_id_)); } FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCreateDocumentElement(frame)); } void RenderViewImpl::didReceiveTitle(WebFrame* frame, const WebString& title, WebTextDirection direction) { UpdateTitle(frame, title, direction); // Also check whether we have new encoding name. UpdateEncoding(frame, frame->view()->pageEncoding().utf8()); } void RenderViewImpl::didChangeIcon(WebFrame* frame, WebIconURL::Type type) { favicon_helper_->DidChangeIcon(frame, type); } void RenderViewImpl::didFinishDocumentLoad(WebFrame* frame) { WebDataSource* ds = frame->dataSource(); DocumentState* document_state = DocumentState::FromDataSource(ds); document_state->set_finish_document_load_time(Time::Now()); Send(new ViewHostMsg_DocumentLoadedInFrame(routing_id_, frame->identifier())); FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidFinishDocumentLoad(frame)); // Check whether we have new encoding name. UpdateEncoding(frame, frame->view()->pageEncoding().utf8()); } void RenderViewImpl::didHandleOnloadEvents(WebFrame* frame) { if (webview()->mainFrame() == frame) { Send(new ViewHostMsg_DocumentOnLoadCompletedInMainFrame(routing_id_, page_id_)); } } void RenderViewImpl::didFailLoad(WebFrame* frame, const WebURLError& error) { WebDataSource* ds = frame->dataSource(); DCHECK(ds); FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidFailLoad(frame, error)); const WebURLRequest& failed_request = ds->request(); string16 error_description; GetContentClient()->renderer()->GetNavigationErrorStrings( failed_request, error, NULL, &error_description); Send(new ViewHostMsg_DidFailLoadWithError(routing_id_, frame->identifier(), failed_request.url(), !frame->parent(), error.reason, error_description)); } void RenderViewImpl::didFinishLoad(WebFrame* frame) { WebDataSource* ds = frame->dataSource(); DocumentState* document_state = DocumentState::FromDataSource(ds); if (document_state->finish_load_time().is_null()) document_state->set_finish_load_time(Time::Now()); FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidFinishLoad(frame)); Send(new ViewHostMsg_DidFinishLoad(routing_id_, frame->identifier(), ds->request().url(), !frame->parent())); } void RenderViewImpl::didNavigateWithinPage( WebFrame* frame, bool is_new_navigation) { // If this was a reference fragment navigation that we initiated, then we // could end up having a non-null pending navigation params. We just need to // update the ExtraData on the datasource so that others who read the // ExtraData will get the new NavigationState. Similarly, if we did not // initiate this navigation, then we need to take care to reset any pre- // existing navigation state to a content-initiated navigation state. // DidCreateDataSource conveniently takes care of this for us. didCreateDataSource(frame, frame->dataSource()); DocumentState* document_state = DocumentState::FromDataSource(frame->dataSource()); NavigationState* new_state = document_state->navigation_state(); new_state->set_was_within_same_page(true); didCommitProvisionalLoad(frame, is_new_navigation); WebDataSource* datasource = frame->view()->mainFrame()->dataSource(); UpdateTitle(frame, datasource->pageTitle(), datasource->pageTitleDirection()); } void RenderViewImpl::didUpdateCurrentHistoryItem(WebFrame* frame) { StartNavStateSyncTimerIfNecessary(); } void RenderViewImpl::assignIdentifierToRequest( WebFrame* frame, unsigned identifier, const WebURLRequest& request) { // Ignore } void RenderViewImpl::willSendRequest(WebFrame* frame, unsigned identifier, WebURLRequest& request, const WebURLResponse& redirect_response) { WebFrame* top_frame = frame->top(); if (!top_frame) top_frame = frame; WebDataSource* provisional_data_source = top_frame->provisionalDataSource(); WebDataSource* top_data_source = top_frame->dataSource(); WebDataSource* data_source = provisional_data_source ? provisional_data_source : top_data_source; PageTransition transition_type = PAGE_TRANSITION_LINK; DocumentState* document_state = DocumentState::FromDataSource(data_source); DCHECK(document_state); NavigationState* navigation_state = document_state->navigation_state(); transition_type = navigation_state->transition_type(); GURL request_url(request.url()); GURL new_url; if (GetContentClient()->renderer()->WillSendRequest( frame, transition_type, request_url, request.firstPartyForCookies(), &new_url)) { request.setURL(WebURL(new_url)); } if (document_state->is_cache_policy_override_set()) request.setCachePolicy(document_state->cache_policy_override()); WebKit::WebReferrerPolicy referrer_policy; if (document_state && document_state->is_referrer_policy_set()) { referrer_policy = document_state->referrer_policy(); document_state->clear_referrer_policy(); } else { referrer_policy = frame->document().referrerPolicy(); } // The request's extra data may indicate that we should set a custom user // agent. This needs to be done here, after WebKit is through with setting the // user agent on its own. WebString custom_user_agent; if (request.extraData()) { webkit_glue::WebURLRequestExtraDataImpl* old_extra_data = static_cast( request.extraData()); custom_user_agent = old_extra_data->custom_user_agent(); if (!custom_user_agent.isNull()) { if (custom_user_agent.isEmpty()) request.clearHTTPHeaderField("User-Agent"); else request.setHTTPHeaderField("User-Agent", custom_user_agent); } } request.setExtraData( new RequestExtraData(referrer_policy, custom_user_agent, (frame == top_frame), frame->identifier(), frame->parent() == top_frame, frame->parent() ? frame->parent()->identifier() : -1, navigation_state->allow_download(), transition_type, navigation_state->transferred_request_child_id(), navigation_state->transferred_request_request_id())); DocumentState* top_document_state = DocumentState::FromDataSource(top_data_source); // TODO(gavinp): separate out prefetching and prerender field trials // if the rel=prerender rel type is sticking around. if (top_document_state && request.targetType() == WebURLRequest::TargetIsPrefetch) top_document_state->set_was_prefetcher(true); request.setRequestorID(routing_id_); request.setHasUserGesture(frame->isProcessingUserGesture()); if (!renderer_preferences_.enable_referrers) request.clearHTTPHeaderField("Referer"); } void RenderViewImpl::didReceiveResponse( WebFrame* frame, unsigned identifier, const WebURLResponse& response) { // Only do this for responses that correspond to a provisional data source // of the top-most frame. If we have a provisional data source, then we // can't have any sub-resources yet, so we know that this response must // correspond to a frame load. if (!frame->provisionalDataSource() || frame->parent()) return; // If we are in view source mode, then just let the user see the source of // the server's error page. if (frame->isViewSourceModeEnabled()) return; DocumentState* document_state = DocumentState::FromDataSource(frame->provisionalDataSource()); int http_status_code = response.httpStatusCode(); // Record page load flags. document_state->set_was_fetched_via_spdy(response.wasFetchedViaSPDY()); document_state->set_was_npn_negotiated(response.wasNpnNegotiated()); WebURLResponseExtraDataImpl* extra_data = GetExtraDataFromResponse(response); if (extra_data) { document_state->set_npn_negotiated_protocol( extra_data->npn_negotiated_protocol()); } document_state->set_was_alternate_protocol_available( response.wasAlternateProtocolAvailable()); document_state->set_was_fetched_via_proxy(response.wasFetchedViaProxy()); document_state->set_http_status_code(http_status_code); // Whether or not the http status code actually corresponds to an error is // only checked when the page is done loading, if |use_error_page| is // still true. document_state->set_use_error_page(true); } void RenderViewImpl::didFinishResourceLoad( WebFrame* frame, unsigned identifier) { DocumentState* document_state = DocumentState::FromDataSource(frame->dataSource()); if (!document_state->use_error_page()) return; // Do not show error page when DevTools is attached. if (devtools_agent_->IsAttached()) return; // Display error page, if appropriate. int http_status_code = document_state->http_status_code(); if (http_status_code == 404) { // On 404s, try a remote search page as a fallback. const GURL& document_url = frame->document().url(); const GURL& error_page_url = GetAlternateErrorPageURL(document_url, HTTP_404); if (error_page_url.is_valid()) { WebURLError original_error; original_error.domain = "http"; original_error.reason = 404; original_error.unreachableURL = document_url; document_state->set_alt_error_page_fetcher( new AltErrorPageResourceFetcher( error_page_url, frame, original_error, base::Bind(&RenderViewImpl::AltErrorPageFinished, base::Unretained(this)))); return; } } std::string error_domain; if (GetContentClient()->renderer()->HasErrorPage( http_status_code, &error_domain)) { WebURLError error; error.unreachableURL = frame->document().url(); error.domain = WebString::fromUTF8(error_domain); error.reason = http_status_code; LoadNavigationErrorPage( frame, frame->dataSource()->request(), error, std::string(), true); } } void RenderViewImpl::didFailResourceLoad( WebFrame* frame, unsigned identifier, const WebURLError& error) { // Ignore } void RenderViewImpl::didLoadResourceFromMemoryCache( WebFrame* frame, const WebURLRequest& request, const WebURLResponse& response) { // The recipients of this message have no use for data: URLs: they don't // affect the page's insecure content list and are not in the disk cache. To // prevent large (1M+) data: URLs from crashing in the IPC system, we simply // filter them out here. GURL url(request.url()); if (url.SchemeIs("data")) return; // Let the browser know we loaded a resource from the memory cache. This // message is needed to display the correct SSL indicators. Send(new ViewHostMsg_DidLoadResourceFromMemoryCache( routing_id_, url, response.securityInfo(), request.httpMethod().utf8(), response.mimeType().utf8(), ResourceType::FromTargetType(request.targetType()))); } void RenderViewImpl::didDisplayInsecureContent(WebFrame* frame) { Send(new ViewHostMsg_DidDisplayInsecureContent(routing_id_)); } void RenderViewImpl::didRunInsecureContent( WebFrame* frame, const WebSecurityOrigin& origin, const WebURL& target) { Send(new ViewHostMsg_DidRunInsecureContent( routing_id_, origin.toString().utf8(), target)); } void RenderViewImpl::didExhaustMemoryAvailableForScript(WebFrame* frame) { Send(new ViewHostMsg_JSOutOfMemory(routing_id_)); } void RenderViewImpl::didCreateScriptContext(WebFrame* frame, v8::Handle context, int extension_group, int world_id) { GetContentClient()->renderer()->DidCreateScriptContext( frame, context, extension_group, world_id); intents_host_->DidCreateScriptContext( frame, context, extension_group, world_id); } void RenderViewImpl::willReleaseScriptContext(WebFrame* frame, v8::Handle context, int world_id) { GetContentClient()->renderer()->WillReleaseScriptContext( frame, context, world_id); } void RenderViewImpl::CheckPreferredSize() { // We don't always want to send the change messages over IPC, only if we've // been put in that mode by getting a |ViewMsg_EnablePreferredSizeChangedMode| // message. if (!send_preferred_size_changes_ || !webview()) return; gfx::Size size(webview()->mainFrame()->contentsPreferredWidth(), webview()->mainFrame()->documentElementScrollHeight()); // In the presence of zoom, these sizes are still reported as if unzoomed, // so we need to adjust. double zoom_factor = WebView::zoomLevelToZoomFactor(webview()->zoomLevel()); size.set_width(static_cast(size.width() * zoom_factor)); size.set_height(static_cast(size.height() * zoom_factor)); if (size == preferred_size_) return; preferred_size_ = size; Send(new ViewHostMsg_DidContentsPreferredSizeChange(routing_id_, preferred_size_)); } WebGraphicsContext3D* RenderViewImpl::CreateGraphicsContext3D( const WebGraphicsContext3D::Attributes& attributes) { if (!webview()) return NULL; // The WebGraphicsContext3DInProcessImpl code path is used for // layout tests (though not through this code) as well as for // debugging and bringing up new ports. if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kInProcessWebGL)) { return webkit::gpu::WebGraphicsContext3DInProcessImpl::CreateForWebView( attributes, true); } else { GURL url; if (webview()->mainFrame()) url = GURL(webview()->mainFrame()->document().url()); else url = GURL("chrome://gpu/RenderViewImpl::CreateGraphicsContext3D"); scoped_ptr context( new WebGraphicsContext3DCommandBufferImpl( surface_id(), url, RenderThreadImpl::current(), AsWeakPtr())); if (!context->Initialize( attributes, false /* bind generates resources */, CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE)) return NULL; return context.release(); } } // The browser process needs to know the shape of the tree, as well as the names // and ids of all frames. This allows it to properly route JavaScript messages // across processes and frames. The serialization format is described in the // comments of the ViewMsg_FrameTreeUpdated message. // This function sends those updates to the browser and updates the RVH // corresponding to this object. It must be called on any events that modify // the tree structure or the names of any frames. void RenderViewImpl::SendUpdatedFrameTree( WebKit::WebFrame* exclude_frame_subtree) { // TODO(nasko): Frame tree updates are causing issues with postMessage, as // described in http://crbug.com/153701. Disable them until a proper fix is // in place. } BrowserPluginManager* RenderViewImpl::browser_plugin_manager() { if (!browser_plugin_manager_) browser_plugin_manager_ = BrowserPluginManager::Create(this); return browser_plugin_manager_; } void RenderViewImpl::CreateFrameTree(WebKit::WebFrame* frame, DictionaryValue* frame_tree) { // TODO(nasko): Remove once http://crbug.com/153701 is fixed. DCHECK(false); NavigateToSwappedOutURL(frame); string16 name; if (frame_tree->GetString(kFrameTreeNodeNameKey, &name) && !name.empty()) frame->setName(name); int remote_id; if (frame_tree->GetInteger(kFrameTreeNodeIdKey, &remote_id)) active_frame_id_map_.insert(std::pair(frame->identifier(), remote_id)); ListValue* children; if (!frame_tree->GetList(kFrameTreeNodeSubtreeKey, &children)) return; // Create an invisible iframe tree in the swapped out page. base::DictionaryValue* child; for (size_t i = 0; i < children->GetSize(); ++i) { if (!children->GetDictionary(i, &child)) continue; WebElement element = frame->document().createElement("iframe"); element.setAttribute("width", "0"); element.setAttribute("height", "0"); element.setAttribute("frameBorder", "0"); if (frame->document().body().appendChild(element)) { WebFrame* subframe = WebFrame::fromFrameOwnerElement(element); if (subframe) CreateFrameTree(subframe, child); } else { LOG(ERROR) << "Failed to append created iframe element."; } } } WebKit::WebFrame* RenderViewImpl::GetFrameByRemoteID(int remote_frame_id) { std::map::const_iterator it = active_frame_id_map_.begin(); for (; it != active_frame_id_map_.end(); ++it) { if (it->second == remote_frame_id) return FindFrameByID(webview()->mainFrame(), it->first); } return NULL; } void RenderViewImpl::EnsureMediaStreamImpl() { if (!RenderThreadImpl::current()) // Will be NULL during unit tests. return; #if defined(ENABLE_WEBRTC) if (!media_stream_dispatcher_) media_stream_dispatcher_ = new MediaStreamDispatcher(this); if (!media_stream_impl_) { media_stream_impl_ = new MediaStreamImpl( this, media_stream_dispatcher_, RenderThreadImpl::current()->video_capture_impl_manager(), RenderThreadImpl::current()->GetMediaStreamDependencyFactory()); } #endif } void RenderViewImpl::didChangeContentsSize(WebFrame* frame, const WebSize& size) { if (webview()->mainFrame() != frame) return; WebView* frameView = frame->view(); if (!frameView) return; bool has_horizontal_scrollbar = frame->hasHorizontalScrollbar(); bool has_vertical_scrollbar = frame->hasVerticalScrollbar(); if (has_horizontal_scrollbar != cached_has_main_frame_horizontal_scrollbar_ || has_vertical_scrollbar != cached_has_main_frame_vertical_scrollbar_) { Send(new ViewHostMsg_DidChangeScrollbarsForMainFrame( routing_id_, has_horizontal_scrollbar, has_vertical_scrollbar)); cached_has_main_frame_horizontal_scrollbar_ = has_horizontal_scrollbar; cached_has_main_frame_vertical_scrollbar_ = has_vertical_scrollbar; } #if defined(OS_ANDROID) ScheduleUpdateFrameInfo(); #endif } void RenderViewImpl::UpdateScrollState(WebFrame* frame) { WebSize offset = frame->scrollOffset(); WebSize minimum_offset = frame->minimumScrollOffset(); WebSize maximum_offset = frame->maximumScrollOffset(); bool is_pinned_to_left = offset.width <= minimum_offset.width; bool is_pinned_to_right = offset.width >= maximum_offset.width; if (is_pinned_to_left != cached_is_main_frame_pinned_to_left_ || is_pinned_to_right != cached_is_main_frame_pinned_to_right_) { Send(new ViewHostMsg_DidChangeScrollOffsetPinningForMainFrame( routing_id_, is_pinned_to_left, is_pinned_to_right)); cached_is_main_frame_pinned_to_left_ = is_pinned_to_left; cached_is_main_frame_pinned_to_right_ = is_pinned_to_right; } } void RenderViewImpl::didChangeScrollOffset(WebFrame* frame) { StartNavStateSyncTimerIfNecessary(); if (webview()->mainFrame() == frame) UpdateScrollState(frame); FOR_EACH_OBSERVER( RenderViewObserver, observers_, DidChangeScrollOffset(frame)); #if defined(OS_ANDROID) if (webview()->mainFrame() == frame) ScheduleUpdateFrameInfo(); #endif } #if defined(OS_ANDROID) void RenderViewImpl::didFirstVisuallyNonEmptyLayout(WebFrame* frame) { if (frame != webview()->mainFrame()) return; // Update body background color if necessary. SkColor bg_color = webwidget_->backgroundColor(); // If not initialized, default to white. Note that 0 is different from black // as black still has alpha 0xFF. if (!bg_color) bg_color = SK_ColorWHITE; if (bg_color != body_background_color_) { body_background_color_ = bg_color; Send(new ViewHostMsg_DidChangeBodyBackgroundColor(routing_id_, bg_color)); } } #endif void RenderViewImpl::SendFindReply(int request_id, int match_count, int ordinal, const WebRect& selection_rect, bool final_status_update) { #if defined(OS_ANDROID) if (synchronous_find_reply_message_.get()) { if (final_status_update) { ViewMsg_SynchronousFind::WriteReplyParams( synchronous_find_reply_message_.get(), match_count, match_count ? synchronous_find_active_match_ordinal_ : 0); Send(synchronous_find_reply_message_.release()); } return; } #endif Send(new ViewHostMsg_Find_Reply(routing_id_, request_id, match_count, selection_rect, ordinal, final_status_update)); } void RenderViewImpl::reportFindInPageMatchCount(int request_id, int count, bool final_update) { int active_match_ordinal = -1; // -1 = don't update active match ordinal if (!count) active_match_ordinal = 0; // Send the search result over to the browser process. SendFindReply(request_id, count, active_match_ordinal, gfx::Rect(), final_update); } void RenderViewImpl::reportFindInPageSelection(int request_id, int active_match_ordinal, const WebRect& selection_rect) { #if defined(OS_ANDROID) // If this was a SynchronousFind request, we need to remember the ordinal // value here for replying when reportFindInPageMatchCount is called. if (synchronous_find_reply_message_.get()) { synchronous_find_active_match_ordinal_ = active_match_ordinal; return; } #endif SendFindReply(request_id, -1, active_match_ordinal, selection_rect, false); } void RenderViewImpl::openFileSystem( WebFrame* frame, WebFileSystem::Type type, long long size, bool create, WebFileSystemCallbacks* callbacks) { DCHECK(callbacks); WebSecurityOrigin origin = frame->document().securityOrigin(); if (origin.isUnique()) { // Unique origins cannot store persistent state. callbacks->didFail(WebKit::WebFileErrorAbort); return; } ChildThread::current()->file_system_dispatcher()->OpenFileSystem( GURL(origin.toString()), static_cast(type), size, create, new WebFileSystemCallbackDispatcher(callbacks)); } void RenderViewImpl::deleteFileSystem( WebFrame* frame, WebFileSystem::Type type , WebFileSystemCallbacks* callbacks) { DCHECK(callbacks); WebSecurityOrigin origin = frame->document().securityOrigin(); if (origin.isUnique()) { // Unique origins cannot store persistent state. callbacks->didSucceed(); return; } ChildThread::current()->file_system_dispatcher()->DeleteFileSystem( GURL(origin.toString()), static_cast(type), new WebFileSystemCallbackDispatcher(callbacks)); } void RenderViewImpl::queryStorageUsageAndQuota( WebFrame* frame, WebStorageQuotaType type, WebStorageQuotaCallbacks* callbacks) { DCHECK(frame); WebSecurityOrigin origin = frame->document().securityOrigin(); if (origin.isUnique()) { // Unique origins cannot store persistent state. callbacks->didFail(WebKit::WebStorageQuotaErrorAbort); return; } ChildThread::current()->quota_dispatcher()->QueryStorageUsageAndQuota( GURL(origin.toString()), static_cast(type), QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); } void RenderViewImpl::requestStorageQuota( WebFrame* frame, WebStorageQuotaType type, unsigned long long requested_size, WebStorageQuotaCallbacks* callbacks) { DCHECK(frame); WebSecurityOrigin origin = frame->document().securityOrigin(); if (origin.isUnique()) { // Unique origins cannot store persistent state. callbacks->didFail(WebKit::WebStorageQuotaErrorAbort); return; } ChildThread::current()->quota_dispatcher()->RequestStorageQuota( routing_id(), GURL(origin.toString()), static_cast(type), requested_size, QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); } void RenderViewImpl::registerIntentService( WebFrame* frame, const WebIntentServiceInfo& service) { webkit_glue::WebIntentServiceData data(service); if (data.title.empty()) data.title = webview()->mainFrame()->document().title(); bool user_gesture = frame->isProcessingUserGesture(); Send(new IntentsHostMsg_RegisterIntentService(routing_id_, data, user_gesture)); } void RenderViewImpl::dispatchIntent( WebFrame* frame, const WebIntentRequest& intentRequest) { webkit_glue::WebIntentData intent_data(intentRequest.intent()); // See WebMessagePortChannelImpl::postMessage() and ::OnMessagedQueued() WebKit::WebMessagePortChannelArray* channels = intentRequest.intent().messagePortChannelsRelease(); if (channels) { for (size_t i = 0; i < channels->size(); ++i) { WebMessagePortChannelImpl* webchannel = static_cast((*channels)[i]); intent_data.message_port_ids.push_back(webchannel->message_port_id()); DCHECK(intent_data.message_port_ids[i] != MSG_ROUTING_NONE); } delete channels; } int id = intents_host_->RegisterWebIntent(intentRequest); Send(new IntentsHostMsg_WebIntentDispatch( routing_id_, intent_data, id)); } bool RenderViewImpl::willCheckAndDispatchMessageEvent( WebKit::WebFrame* sourceFrame, WebKit::WebFrame* targetFrame, WebKit::WebSecurityOrigin target_origin, WebKit::WebDOMMessageEvent event) { if (!is_swapped_out_) return false; ViewMsg_PostMessage_Params params; params.data = event.data().toString(); params.source_origin = event.origin(); if (!target_origin.isNull()) params.target_origin = target_origin.toString(); // Include the routing ID for the source frame, which the browser process // will translate into the routing ID for the equivalent frame in the target // process. params.source_routing_id = MSG_ROUTING_NONE; RenderViewImpl* source_view = FromWebView(sourceFrame->view()); if (source_view) params.source_routing_id = source_view->routing_id(); params.source_frame_id = sourceFrame->identifier(); // Include the process, route, and frame IDs of the target frame. This allows // the browser to detect races between this message being sent and the target // frame no longer being valid. params.target_process_id = target_process_id_; params.target_routing_id = target_routing_id_; std::map::iterator it = active_frame_id_map_.find( targetFrame->identifier()); if (it != active_frame_id_map_.end()) { params.target_frame_id = it->second; } else { params.target_frame_id = 0; } Send(new ViewHostMsg_RouteMessageEvent(routing_id_, params)); return true; } void RenderViewImpl::willOpenSocketStream( WebSocketStreamHandle* handle) { SocketStreamHandleData::AddToHandle(handle, routing_id_); } void RenderViewImpl::willStartUsingPeerConnectionHandler( WebKit::WebFrame* frame, WebKit::WebRTCPeerConnectionHandler* handler) { #if defined(ENABLE_WEBRTC) static_cast(handler)->associateWithFrame(frame); #endif } WebKit::WebString RenderViewImpl::userAgentOverride( WebKit::WebFrame* frame, const WebKit::WebURL& url) { if (!webview() || !webview()->mainFrame() || renderer_preferences_.user_agent_override.empty()) { return WebKit::WebString(); } // If we're in the middle of committing a load, the data source we need // will still be provisional. WebFrame* main_frame = webview()->mainFrame(); WebDataSource* data_source = NULL; if (main_frame->provisionalDataSource()) data_source = main_frame->provisionalDataSource(); else data_source = main_frame->dataSource(); DocumentState* document_state = data_source ? DocumentState::FromDataSource(data_source) : NULL; if (document_state && document_state->is_overriding_user_agent()) return WebString::fromUTF8(renderer_preferences_.user_agent_override); else return WebKit::WebString(); } bool RenderViewImpl::allowWebGL(WebFrame* frame, bool default_value) { if (!default_value) return false; bool blocked = true; Send(new ViewHostMsg_Are3DAPIsBlocked( routing_id_, GURL(frame->top()->document().securityOrigin().toString()), THREE_D_API_TYPE_WEBGL, &blocked)); return !blocked; } void RenderViewImpl::didLoseWebGLContext( WebKit::WebFrame* frame, int arb_robustness_status_code) { Send(new ViewHostMsg_DidLose3DContext( GURL(frame->top()->document().securityOrigin().toString()), THREE_D_API_TYPE_WEBGL, arb_robustness_status_code)); } // WebKit::WebPageSerializerClient implementation ------------------------------ void RenderViewImpl::didSerializeDataForFrame( const WebURL& frame_url, const WebCString& data, WebPageSerializerClient::PageSerializationStatus status) { Send(new ViewHostMsg_SendSerializedHtmlData( routing_id(), frame_url, data.data(), static_cast(status))); } // RenderView implementation --------------------------------------------------- bool RenderViewImpl::Send(IPC::Message* message) { return RenderWidget::Send(message); } int RenderViewImpl::GetRoutingID() const { return routing_id_; } int RenderViewImpl::GetPageId() const { return page_id_; } gfx::Size RenderViewImpl::GetSize() const { return size(); } WebPreferences& RenderViewImpl::GetWebkitPreferences() { return webkit_preferences_; } void RenderViewImpl::SetWebkitPreferences(const WebPreferences& preferences) { OnUpdateWebPreferences(preferences); } WebKit::WebView* RenderViewImpl::GetWebView() { return webview(); } WebKit::WebNode RenderViewImpl::GetFocusedNode() const { if (!webview()) return WebNode(); WebFrame* focused_frame = webview()->focusedFrame(); if (focused_frame) { WebDocument doc = focused_frame->document(); if (!doc.isNull()) return doc.focusedNode(); } return WebNode(); } WebKit::WebNode RenderViewImpl::GetContextMenuNode() const { return context_menu_node_; } bool RenderViewImpl::IsEditableNode(const WebNode& node) const { if (node.isNull()) return false; if (node.isContentEditable()) return true; if (node.isElementNode()) { const WebElement& element = node.toConst(); if (element.isTextFormControlElement()) return true; // Also return true if it has an ARIA role of 'textbox'. for (unsigned i = 0; i < element.attributeCount(); ++i) { if (LowerCaseEqualsASCII(element.attributeLocalName(i), "role")) { if (LowerCaseEqualsASCII(element.attributeValue(i), "textbox")) return true; break; } } } return false; } WebKit::WebPlugin* RenderViewImpl::CreatePlugin( WebKit::WebFrame* frame, const webkit::WebPluginInfo& info, const WebKit::WebPluginParams& params) { WebKit::WebPlugin* pepper_webplugin = pepper_helper_->CreatePepperWebPlugin(info, params); if (pepper_webplugin) return pepper_webplugin; #if defined(USE_AURA) && !defined(OS_WIN) return NULL; #else return new webkit::npapi::WebPluginImpl( frame, params, info.path, AsWeakPtr()); #endif } void RenderViewImpl::EvaluateScript(const string16& frame_xpath, const string16& jscript, int id, bool notify_result) { v8::Handle result; WebFrame* web_frame = GetChildFrame(frame_xpath); if (web_frame) result = web_frame->executeScriptAndReturnValue(WebScriptSource(jscript)); if (notify_result) { ListValue list; if (!result.IsEmpty() && web_frame) { v8::HandleScope handle_scope; v8::Local context = web_frame->mainWorldScriptContext(); v8::Context::Scope context_scope(context); V8ValueConverterImpl converter; converter.SetDateAllowed(true); converter.SetRegExpAllowed(true); base::Value* result_value = converter.FromV8Value(result, context); list.Set(0, result_value ? result_value : base::Value::CreateNullValue()); } else { list.Set(0, Value::CreateNullValue()); } Send(new ViewHostMsg_ScriptEvalResponse(routing_id_, id, list)); } } bool RenderViewImpl::ShouldDisplayScrollbars(int width, int height) const { return (!send_preferred_size_changes_ || (disable_scrollbars_size_limit_.width() <= width || disable_scrollbars_size_limit_.height() <= height)); } int RenderViewImpl::GetEnabledBindings() const { return enabled_bindings_; } bool RenderViewImpl::GetContentStateImmediately() const { return send_content_state_immediately_; } float RenderViewImpl::GetFilteredTimePerFrame() const { return filtered_time_per_frame(); } int RenderViewImpl::ShowContextMenu(ContextMenuClient* client, const ContextMenuParams& params) { DCHECK(client); // A null client means "internal" when we issue callbacks. ContextMenuParams our_params(params); our_params.custom_context.request_id = pending_context_menus_.Add(client); Send(new ViewHostMsg_ContextMenu(routing_id_, our_params)); return our_params.custom_context.request_id; } void RenderViewImpl::CancelContextMenu(int request_id) { DCHECK(pending_context_menus_.Lookup(request_id)); pending_context_menus_.Remove(request_id); } WebKit::WebPageVisibilityState RenderViewImpl::GetVisibilityState() const { return visibilityState(); } void RenderViewImpl::RunModalAlertDialog(WebKit::WebFrame* frame, const WebKit::WebString& message) { return runModalAlertDialog(frame, message); } void RenderViewImpl::LoadURLExternally( WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, WebKit::WebNavigationPolicy policy) { loadURLExternally(frame, request, policy); } // webkit_glue::WebPluginPageDelegate ------------------------------------------ webkit::npapi::WebPluginDelegate* RenderViewImpl::CreatePluginDelegate( const FilePath& file_path, const std::string& mime_type) { if (!PluginChannelHost::IsListening()) { LOG(ERROR) << "PluginChannelHost isn't listening"; return NULL; } bool in_process_plugin = RenderProcess::current()->UseInProcessPlugins(); if (in_process_plugin) { #if defined(OS_WIN) && !defined(USE_AURA) return webkit::npapi::WebPluginDelegateImpl::Create(file_path, mime_type); #else // In-proc plugins aren't supported on non-Windows. NOTIMPLEMENTED(); return NULL; #endif } return new WebPluginDelegateProxy(mime_type, AsWeakPtr()); } WebKit::WebPlugin* RenderViewImpl::CreatePluginReplacement( const FilePath& file_path) { return GetContentClient()->renderer()->CreatePluginReplacement( this, file_path); } void RenderViewImpl::CreatedPluginWindow(gfx::PluginWindowHandle window) { #if defined(USE_X11) Send(new ViewHostMsg_CreatePluginContainer(routing_id(), window)); #endif } void RenderViewImpl::WillDestroyPluginWindow(gfx::PluginWindowHandle window) { #if defined(USE_X11) Send(new ViewHostMsg_DestroyPluginContainer(routing_id(), window)); #endif CleanupWindowInPluginMoves(window); } void RenderViewImpl::DidMovePlugin( const webkit::npapi::WebPluginGeometry& move) { SchedulePluginMove(move); } void RenderViewImpl::DidStartLoadingForPlugin() { // TODO(darin): Make is_loading_ be a counter! didStartLoading(); } void RenderViewImpl::DidStopLoadingForPlugin() { // TODO(darin): Make is_loading_ be a counter! didStopLoading(); } WebCookieJar* RenderViewImpl::GetCookieJar() { return &cookie_jar_; } void RenderViewImpl::DidPlay(WebKit::WebMediaPlayer* player) { Send(new ViewHostMsg_MediaNotification(routing_id_, reinterpret_cast(player), player->hasVideo(), player->hasAudio(), true)); } void RenderViewImpl::DidPause(WebKit::WebMediaPlayer* player) { Send(new ViewHostMsg_MediaNotification(routing_id_, reinterpret_cast(player), player->hasVideo(), player->hasAudio(), false)); } void RenderViewImpl::PlayerGone(WebKit::WebMediaPlayer* player) { DidPause(player); } void RenderViewImpl::SyncNavigationState() { if (!webview()) return; const WebHistoryItem& item = webview()->mainFrame()->currentHistoryItem(); SendUpdateState(item); } void RenderViewImpl::SyncSelectionIfRequired() { WebFrame* frame = webview()->focusedFrame(); if (!frame) return; string16 text; size_t offset; ui::Range range; if (pepper_helper_->IsPluginFocused()) { pepper_helper_->GetSurroundingText(&text, &range); offset = 0; // Pepper API does not support offset reporting. // TODO(kinaba): cut as needed. } else { size_t location, length; if (!webview()->caretOrSelectionRange(&location, &length)) return; range = ui::Range(location, location + length); if (webview()->textInputType() != WebKit::WebTextInputTypeNone) { // If current focused element is editable, we will send 100 more chars // before and after selection. It is for input method surrounding text // feature. if (location > kExtraCharsBeforeAndAfterSelection) offset = location - kExtraCharsBeforeAndAfterSelection; else offset = 0; length = location + length - offset + kExtraCharsBeforeAndAfterSelection; WebRange webrange = WebRange::fromDocumentRange(frame, offset, length); if (!webrange.isNull()) text = WebRange::fromDocumentRange(frame, offset, length).toPlainText(); } else { offset = location; text = frame->selectionAsText(); // http://crbug.com/101435 // In some case, frame->selectionAsText() returned text's length is not // equal to the length returned from webview()->caretOrSelectionRange(). // So we have to set the range according to text.length(). range.set_end(range.start() + text.length()); } } // Sometimes we get repeated didChangeSelection calls from webkit when // the selection hasn't actually changed. We don't want to report these // because it will cause us to continually claim the X clipboard. if (selection_text_offset_ != offset || selection_range_ != range || selection_text_ != text) { selection_text_ = text; selection_text_offset_ = offset; selection_range_ = range; Send(new ViewHostMsg_SelectionChanged(routing_id_, text, offset, range)); } } GURL RenderViewImpl::GetAlternateErrorPageURL(const GURL& failed_url, ErrorPageType error_type) { if (failed_url.SchemeIsSecure()) { // If the URL that failed was secure, then the embedding web page was not // expecting a network attacker to be able to manipulate its contents. As // we fetch alternate error pages over HTTP, we would be allowing a network // attacker to manipulate the contents of the response if we tried to use // the link doctor here. return GURL(); } // Grab the base URL from the browser process. if (!alternate_error_page_url_.is_valid()) return GURL(); // Strip query params from the failed URL. GURL::Replacements remove_params; remove_params.ClearUsername(); remove_params.ClearPassword(); remove_params.ClearQuery(); remove_params.ClearRef(); const GURL url_to_send = failed_url.ReplaceComponents(remove_params); std::string spec_to_send = url_to_send.spec(); // Notify link doctor of the url truncation by sending of "?" at the end. if (failed_url.has_query()) spec_to_send.append("?"); // Construct the query params to send to link doctor. std::string params(alternate_error_page_url_.query()); params.append("&url="); params.append(net::EscapeQueryParamValue(spec_to_send, true)); params.append("&sourceid=chrome"); params.append("&error="); switch (error_type) { case DNS_ERROR: params.append("dnserror"); break; case HTTP_404: params.append("http404"); break; case CONNECTION_ERROR: params.append("connectionfailure"); break; default: NOTREACHED() << "unknown ErrorPageType"; } // OK, build the final url to return. GURL::Replacements link_doctor_params; link_doctor_params.SetQueryStr(params); GURL url = alternate_error_page_url_.ReplaceComponents(link_doctor_params); return url; } GURL RenderViewImpl::GetLoadingUrl(WebKit::WebFrame* frame) const { WebDataSource* ds = frame->dataSource(); if (ds->hasUnreachableURL()) return ds->unreachableURL(); const WebURLRequest& request = ds->request(); return request.url(); } WebKit::WebPlugin* RenderViewImpl::GetWebPluginFromPluginDocument() { return webview()->mainFrame()->document().to().plugin(); } void RenderViewImpl::OnFind(int request_id, const string16& search_text, const WebFindOptions& options) { #if defined(OS_ANDROID) // Make sure any asynchronous messages do not disrupt an ongoing synchronous // find request as it might lead to deadlocks. Also, these should be safe to // ignore since they would belong to a previous find request. if (synchronous_find_reply_message_.get()) return; #endif Find(request_id, search_text, options); } void RenderViewImpl::Find(int request_id, const string16& search_text, const WebFindOptions& options) { WebFrame* main_frame = webview()->mainFrame(); // Check if the plugin still exists in the document. if (main_frame->document().isPluginDocument() && GetWebPluginFromPluginDocument()) { if (options.findNext) { // Just navigate back/forward. GetWebPluginFromPluginDocument()->selectFindResult(options.forward); } else { if (!GetWebPluginFromPluginDocument()->startFind( search_text, options.matchCase, request_id)) { // Send "no results". SendFindReply(request_id, 0, 0, gfx::Rect(), true); } } return; } WebFrame* frame_after_main = main_frame->traverseNext(true); WebFrame* focused_frame = webview()->focusedFrame(); WebFrame* search_frame = focused_frame; // start searching focused frame. bool multi_frame = (frame_after_main != main_frame); // If we have multiple frames, we don't want to wrap the search within the // frame, so we check here if we only have main_frame in the chain. bool wrap_within_frame = !multi_frame; WebRect selection_rect; bool result = false; // If something is selected when we start searching it means we cannot just // increment the current match ordinal; we need to re-generate it. WebRange current_selection = focused_frame->selectionRange(); do { result = search_frame->find( request_id, search_text, options, wrap_within_frame, &selection_rect); if (!result) { // don't leave text selected as you move to the next frame. search_frame->executeCommand(WebString::fromUTF8("Unselect")); // Find the next frame, but skip the invisible ones. do { // What is the next frame to search? (we might be going backwards). Note // that we specify wrap=true so that search_frame never becomes NULL. search_frame = options.forward ? search_frame->traverseNext(true) : search_frame->traversePrevious(true); } while (!search_frame->hasVisibleContent() && search_frame != focused_frame); // Make sure selection doesn't affect the search operation in new frame. search_frame->executeCommand(WebString::fromUTF8("Unselect")); // If we have multiple frames and we have wrapped back around to the // focused frame, we need to search it once more allowing wrap within // the frame, otherwise it will report 'no match' if the focused frame has // reported matches, but no frames after the focused_frame contain a // match for the search word(s). if (multi_frame && search_frame == focused_frame) { result = search_frame->find( request_id, search_text, options, true, // Force wrapping. &selection_rect); } } webview()->setFocusedFrame(search_frame); } while (!result && search_frame != focused_frame); if (options.findNext && current_selection.isNull()) { // Force the main_frame to report the actual count. main_frame->increaseMatchCount(0, request_id); } else { // If nothing is found, set result to "0 of 0", otherwise, set it to // "-1 of 1" to indicate that we found at least one item, but we don't know // yet what is active. int ordinal = result ? -1 : 0; // -1 here means, we might know more later. int match_count = result ? 1 : 0; // 1 here means possibly more coming. // If we find no matches then this will be our last status update. // Otherwise the scoping effort will send more results. bool final_status_update = !result; SendFindReply(request_id, match_count, ordinal, selection_rect, final_status_update); // Scoping effort begins, starting with the mainframe. search_frame = main_frame; main_frame->resetMatchCount(); do { // Cancel all old scoping requests before starting a new one. search_frame->cancelPendingScopingEffort(); // We don't start another scoping effort unless at least one match has // been found. if (result) { // Start new scoping request. If the scoping function determines that it // needs to scope, it will defer until later. search_frame->scopeStringMatches(request_id, search_text, options, true); // reset the tickmarks } // Iterate to the next frame. The frame will not necessarily scope, for // example if it is not visible. search_frame = search_frame->traverseNext(true); } while (search_frame != main_frame); } } void RenderViewImpl::OnStopFinding(StopFindAction action) { #if defined(OS_ANDROID) // Make sure any asynchronous messages do not disrupt an ongoing synchronous // find request as it might lead to deadlocks. Also, these should be safe to // ignore since they would belong to a previous find request. if (synchronous_find_reply_message_.get()) return; #endif StopFinding(action); } void RenderViewImpl::StopFinding(StopFindAction action) { WebView* view = webview(); if (!view) return; WebDocument doc = view->mainFrame()->document(); if (doc.isPluginDocument() && GetWebPluginFromPluginDocument()) { GetWebPluginFromPluginDocument()->stopFind(); return; } bool clear_selection = action == STOP_FIND_ACTION_CLEAR_SELECTION; if (clear_selection) view->focusedFrame()->executeCommand(WebString::fromUTF8("Unselect")); WebFrame* frame = view->mainFrame(); while (frame) { frame->stopFinding(clear_selection); frame = frame->traverseNext(false); } if (action == STOP_FIND_ACTION_ACTIVATE_SELECTION) { WebFrame* focused_frame = view->focusedFrame(); if (focused_frame) { WebDocument doc = focused_frame->document(); if (!doc.isNull()) { WebNode node = doc.focusedNode(); if (!node.isNull()) node.simulateClick(); } } } } #if defined(OS_ANDROID) void RenderViewImpl::OnSynchronousFind(int request_id, const string16& search_string, const WebFindOptions& options, IPC::Message* reply_msg) { // It is impossible for simultaneous blocking finds to occur. CHECK(!synchronous_find_reply_message_.get()); synchronous_find_reply_message_.reset(reply_msg); // Find next should be asynchronous in order to minimize blocking // the UI thread as much as possible. DCHECK(!options.findNext); StopFinding(STOP_FIND_ACTION_KEEP_SELECTION); synchronous_find_active_match_ordinal_ = -1; Find(request_id, search_string, options); } void RenderViewImpl::OnActivateNearestFindResult(int request_id, float x, float y) { if (!webview()) return; WebFrame* main_frame = webview()->mainFrame(); WebRect selection_rect; int ordinal = main_frame->selectNearestFindMatch(WebFloatPoint(x, y), &selection_rect); if (ordinal == -1) { // Something went wrong, so send a no-op reply (force the main_frame to // report the current match count) in case the host is waiting for a // response due to rate-limiting). main_frame->increaseMatchCount(0, request_id); return; } SendFindReply(request_id, -1 /* number_of_matches */, ordinal, selection_rect, true /* final_update */); } void RenderViewImpl::OnFindMatchRects(int current_version) { if (!webview()) return; WebFrame* main_frame = webview()->mainFrame(); std::vector match_rects; int rects_version = main_frame->findMatchMarkersVersion(); if (current_version != rects_version) { WebVector web_match_rects; main_frame->findMatchRects(web_match_rects); match_rects.reserve(web_match_rects.size()); for (size_t i = 0; i < web_match_rects.size(); ++i) match_rects.push_back(gfx::RectF(web_match_rects[i])); } gfx::RectF active_rect = main_frame->activeFindMatchRect(); Send(new ViewHostMsg_FindMatchRects_Reply(routing_id_, rects_version, match_rects, active_rect)); } #endif void RenderViewImpl::OnZoom(PageZoom zoom) { if (!webview()) // Not sure if this can happen, but no harm in being safe. return; webview()->hidePopups(); double old_zoom_level = webview()->zoomLevel(); double zoom_level; if (zoom == PAGE_ZOOM_RESET) { zoom_level = 0; } else if (static_cast(old_zoom_level) == old_zoom_level) { // Previous zoom level is a whole number, so just increment/decrement. zoom_level = old_zoom_level + zoom; } else { // Either the user hit the zoom factor limit and thus the zoom level is now // not a whole number, or a plugin changed it to a custom value. We want // to go to the next whole number so that the user can always get back to // 100% with the keyboard/menu. if ((old_zoom_level > 1 && zoom > 0) || (old_zoom_level < 1 && zoom < 0)) { zoom_level = static_cast(old_zoom_level + zoom); } else { // We're going towards 100%, so first go to the next whole number. zoom_level = static_cast(old_zoom_level); } } webview()->setZoomLevel(false, zoom_level); zoomLevelChanged(); } void RenderViewImpl::OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y) { ZoomFactorHelper(zoom, zoom_center_x, zoom_center_y, kScalingIncrementForGesture); } void RenderViewImpl::ZoomFactorHelper(PageZoom zoom, int zoom_center_x, int zoom_center_y, float scaling_increment) { if (!webview()) // Not sure if this can happen, but no harm in being safe. return; double old_page_scale_factor = webview()->pageScaleFactor(); double page_scale_factor; if (zoom == PAGE_ZOOM_RESET) { page_scale_factor = 1.0; } else { page_scale_factor = old_page_scale_factor + (zoom > 0 ? scaling_increment : -scaling_increment); } if (page_scale_factor > 0) { webview()->setPageScaleFactor(page_scale_factor, WebPoint(zoom_center_x, zoom_center_y)); } } void RenderViewImpl::OnSetZoomLevel(double zoom_level) { webview()->hidePopups(); webview()->setZoomLevel(false, zoom_level); zoomLevelChanged(); } void RenderViewImpl::OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level) { host_zoom_levels_[url] = zoom_level; } void RenderViewImpl::OnSetPageEncoding(const std::string& encoding_name) { webview()->setPageEncoding(WebString::fromUTF8(encoding_name)); } void RenderViewImpl::OnResetPageEncodingToDefault() { WebString no_encoding; webview()->setPageEncoding(no_encoding); } WebFrame* RenderViewImpl::GetChildFrame(const string16& xpath) const { if (xpath.empty()) return webview()->mainFrame(); // xpath string can represent a frame deep down the tree (across multiple // frame DOMs). // Example, /html/body/table/tbody/tr/td/iframe\n/frameset/frame[0] // should break into 2 xpaths // /html/body/table/tbody/tr/td/iframe & /frameset/frame[0] std::vector xpaths; base::SplitString(xpath, '\n', &xpaths); WebFrame* frame = webview()->mainFrame(); for (std::vector::const_iterator i = xpaths.begin(); frame && i != xpaths.end(); ++i) { frame = frame->findChildByExpression(*i); } return frame; } void RenderViewImpl::OnScriptEvalRequest(const string16& frame_xpath, const string16& jscript, int id, bool notify_result) { TRACE_EVENT_INSTANT0("test_tracing", "OnScriptEvalRequest"); EvaluateScript(frame_xpath, jscript, id, notify_result); } void RenderViewImpl::OnPostMessageEvent( const ViewMsg_PostMessage_Params& params) { // Find the target frame of this message. The source tags the message with // |target_frame_id|, so use it to locate the frame. // TODO(nasko): Lookup based on the frame id, once http://crbug.com/153701 // is fixed and we can rely on having frame tree updates again. WebFrame* frame = webview()->mainFrame(); // Find the source frame if it exists. WebFrame* source_frame = NULL; if (params.source_routing_id != MSG_ROUTING_NONE) { RenderViewImpl* source_view = FromRoutingID(params.source_routing_id); // TODO(nasko): Lookup based on the frame id, once http://crbug.com/153701 // is fixed and we can rely on having frame tree updates again. if (source_view) source_frame = source_view->webview()->mainFrame(); } // Create an event with the message. The final parameter to initMessageEvent // is the last event ID, which is not used with postMessage. WebDOMEvent event = frame->document().createEvent("MessageEvent"); WebDOMMessageEvent msg_event = event.to(); msg_event.initMessageEvent("message", // |canBubble| and |cancellable| are always false false, false, WebSerializedScriptValue::fromString(params.data), params.source_origin, source_frame, ""); // We must pass in the target_origin to do the security check on this side, // since it may have changed since the original postMessage call was made. WebSecurityOrigin target_origin; if (!params.target_origin.empty()) { target_origin = WebSecurityOrigin::createFromString(WebString(params.target_origin)); } frame->dispatchMessageEventWithOriginCheck(target_origin, msg_event); } void RenderViewImpl::OnCSSInsertRequest(const string16& frame_xpath, const std::string& css) { WebFrame* frame = GetChildFrame(frame_xpath); if (!frame) return; frame->document().insertUserStyleSheet( WebString::fromUTF8(css), WebDocument::UserStyleAuthorLevel); } void RenderViewImpl::OnAllowBindings(int enabled_bindings_flags) { if ((enabled_bindings_flags & BINDINGS_POLICY_WEB_UI) && !(enabled_bindings_ & BINDINGS_POLICY_WEB_UI)) { RenderThread::Get()->RegisterExtension(content::WebUIExtension::Get()); new WebUIExtensionData(this); } enabled_bindings_ |= enabled_bindings_flags; // Keep track of the total bindings accumulated in this process. RenderProcess::current()->AddBindings(enabled_bindings_flags); } void RenderViewImpl::OnDragTargetDragEnter(const WebDropData& drop_data, const gfx::Point& client_point, const gfx::Point& screen_point, WebDragOperationsMask ops, int key_modifiers) { WebDragOperation operation = webview()->dragTargetDragEnter( drop_data.ToDragData(), client_point, screen_point, ops, key_modifiers); Send(new DragHostMsg_UpdateDragCursor(routing_id_, operation)); } void RenderViewImpl::OnDragTargetDragOver(const gfx::Point& client_point, const gfx::Point& screen_point, WebDragOperationsMask ops, int key_modifiers) { WebDragOperation operation = webview()->dragTargetDragOver( client_point, screen_point, ops, key_modifiers); Send(new DragHostMsg_UpdateDragCursor(routing_id_, operation)); } void RenderViewImpl::OnDragTargetDragLeave() { webview()->dragTargetDragLeave(); } void RenderViewImpl::OnDragTargetDrop(const gfx::Point& client_point, const gfx::Point& screen_point, int key_modifiers) { webview()->dragTargetDrop(client_point, screen_point, key_modifiers); Send(new DragHostMsg_TargetDrop_ACK(routing_id_)); } void RenderViewImpl::OnDragSourceEndedOrMoved(const gfx::Point& client_point, const gfx::Point& screen_point, bool ended, WebDragOperation op) { if (ended) { webview()->dragSourceEndedAt(client_point, screen_point, op); } else { webview()->dragSourceMovedTo(client_point, screen_point, op); } } void RenderViewImpl::OnDragSourceSystemDragEnded() { webview()->dragSourceSystemDragEnded(); } void RenderViewImpl::OnUpdateWebPreferences(const WebPreferences& prefs) { webkit_preferences_ = prefs; webkit_preferences_.Apply(webview()); } void RenderViewImpl::OnUpdateTimezone() { if (webview()) NotifyTimezoneChange(webview()->mainFrame()); } void RenderViewImpl::OnSetAltErrorPageURL(const GURL& url) { alternate_error_page_url_ = url; } void RenderViewImpl::OnCustomContextMenuAction( const CustomContextMenuContext& custom_context, unsigned action) { if (custom_context.request_id) { // External context menu request, look in our map. ContextMenuClient* client = pending_context_menus_.Lookup(custom_context.request_id); if (client) client->OnMenuAction(custom_context.request_id, action); } else { // Internal request, forward to WebKit. webview()->performCustomContextMenuAction(action); } } void RenderViewImpl::OnEnumerateDirectoryResponse( int id, const std::vector& paths) { if (!enumeration_completions_[id]) return; WebVector ws_file_names(paths.size()); for (size_t i = 0; i < paths.size(); ++i) ws_file_names[i] = webkit_base::FilePathToWebString(paths[i]); enumeration_completions_[id]->didChooseFile(ws_file_names); enumeration_completions_.erase(id); } void RenderViewImpl::OnFileChooserResponse( const std::vector& files) { // This could happen if we navigated to a different page before the user // closed the chooser. if (file_chooser_completions_.empty()) return; // Convert Chrome's SelectedFileInfo list to WebKit's. WebVector selected_files( files.size()); for (size_t i = 0; i < files.size(); ++i) { WebFileChooserCompletion::SelectedFileInfo selected_file; selected_file.path = webkit_base::FilePathToWebString(files[i].local_path); selected_file.displayName = webkit_base::FilePathStringToWebString( files[i].display_name); selected_files[i] = selected_file; } if (file_chooser_completions_.front()->completion) file_chooser_completions_.front()->completion->didChooseFile( selected_files); file_chooser_completions_.pop_front(); // If there are more pending file chooser requests, schedule one now. if (!file_chooser_completions_.empty()) { Send(new ViewHostMsg_RunFileChooser(routing_id_, file_chooser_completions_.front()->params)); } } void RenderViewImpl::OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size) { DCHECK(disable_scrollbars_size_limit_.IsEmpty()); if (!webview()) return; webview()->enableAutoResizeMode(min_size, max_size); } void RenderViewImpl::OnDisableAutoResize(const gfx::Size& new_size) { DCHECK(disable_scrollbars_size_limit_.IsEmpty()); if (!webview()) return; webview()->disableAutoResizeMode(); Resize(new_size, resizer_rect_, is_fullscreen_, NO_RESIZE_ACK); } void RenderViewImpl::OnEnablePreferredSizeChangedMode() { if (send_preferred_size_changes_) return; send_preferred_size_changes_ = true; // Start off with an initial preferred size notification (in case // |didUpdateLayout| was already called). didUpdateLayout(); } void RenderViewImpl::OnDisableScrollbarsForSmallWindows( const gfx::Size& disable_scrollbar_size_limit) { disable_scrollbars_size_limit_ = disable_scrollbar_size_limit; } void RenderViewImpl::OnSetRendererPrefs( const RendererPreferences& renderer_prefs) { double old_zoom_level = renderer_preferences_.default_zoom_level; renderer_preferences_ = renderer_prefs; UpdateFontRenderingFromRendererPrefs(); #if defined(TOOLKIT_GTK) WebColorName name = WebKit::WebColorWebkitFocusRingColor; WebKit::setNamedColors(&name, &renderer_prefs.focus_ring_color, 1); WebKit::setCaretBlinkInterval(renderer_prefs.caret_blink_interval); ui::NativeTheme::instance()->SetScrollbarColors( renderer_prefs.thumb_inactive_color, renderer_prefs.thumb_active_color, renderer_prefs.track_color); #endif #if defined(USE_DEFAULT_RENDER_THEME) || defined(TOOLKIT_GTK) if (webview()) { #if defined(TOOLKIT_GTK) webview()->setScrollbarColors( renderer_prefs.thumb_inactive_color, renderer_prefs.thumb_active_color, renderer_prefs.track_color); #endif webview()->setSelectionColors( renderer_prefs.active_selection_bg_color, renderer_prefs.active_selection_fg_color, renderer_prefs.inactive_selection_bg_color, renderer_prefs.inactive_selection_fg_color); webview()->themeChanged(); } #endif // If the zoom level for this page matches the old zoom default, and this // is not a plugin, update the zoom level to match the new default. if (webview() && !webview()->mainFrame()->document().isPluginDocument() && ZoomValuesEqual(webview()->zoomLevel(), old_zoom_level)) { webview()->setZoomLevel(false, renderer_preferences_.default_zoom_level); zoomLevelChanged(); } } void RenderViewImpl::OnMediaPlayerActionAt(const gfx::Point& location, const WebMediaPlayerAction& action) { if (webview()) webview()->performMediaPlayerAction(action, location); } void RenderViewImpl::OnOrientationChangeEvent(int orientation) { webview()->mainFrame()->sendOrientationChangeEvent(orientation); } void RenderViewImpl::OnPluginActionAt(const gfx::Point& location, const WebPluginAction& action) { if (webview()) webview()->performPluginAction(action, location); } void RenderViewImpl::OnGetAllSavableResourceLinksForCurrentPage( const GURL& page_url) { // Prepare list to storage all savable resource links. std::vector resources_list; std::vector referrer_urls_list; std::vector referrer_policies_list; std::vector frames_list; webkit_glue::SavableResourcesResult result(&resources_list, &referrer_urls_list, &referrer_policies_list, &frames_list); // webkit/ doesn't know about Referrer. if (!webkit_glue::GetAllSavableResourceLinksForCurrentPage( webview(), page_url, &result, const_cast(GetSavableSchemes()))) { // If something is wrong when collecting all savable resource links, // send empty list to embedder(browser) to tell it failed. referrer_urls_list.clear(); referrer_policies_list.clear(); resources_list.clear(); frames_list.clear(); } std::vector referrers_list; CHECK_EQ(referrer_urls_list.size(), referrer_policies_list.size()); for (unsigned i = 0; i < referrer_urls_list.size(); ++i) { referrers_list.push_back( Referrer(referrer_urls_list[i], referrer_policies_list[i])); } // Send result of all savable resource links to embedder. Send(new ViewHostMsg_SendCurrentPageAllSavableResourceLinks(routing_id(), resources_list, referrers_list, frames_list)); } void RenderViewImpl::OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( const std::vector& links, const std::vector& local_paths, const FilePath& local_directory_name) { // Convert std::vector of GURLs to WebVector WebVector weburl_links(links); // Convert std::vector of std::strings to WebVector WebVector webstring_paths(local_paths.size()); for (size_t i = 0; i < local_paths.size(); i++) webstring_paths[i] = webkit_base::FilePathToWebString(local_paths[i]); WebPageSerializer::serialize(webview()->mainFrame(), true, this, weburl_links, webstring_paths, webkit_base::FilePathToWebString( local_directory_name)); } void RenderViewImpl::OnShouldClose() { base::TimeTicks before_unload_start_time = base::TimeTicks::Now(); bool should_close = webview()->dispatchBeforeUnloadEvent(); base::TimeTicks before_unload_end_time = base::TimeTicks::Now(); Send(new ViewHostMsg_ShouldClose_ACK(routing_id_, should_close, before_unload_start_time, before_unload_end_time)); } void RenderViewImpl::OnSwapOut(const ViewMsg_SwapOut_Params& params) { // Ensure that no other in-progress navigation continues. OnStop(); // Only run unload if we're not swapped out yet, but send the ack either way. if (!is_swapped_out_) { // Swap this RenderView out so the tab can navigate to a page rendered by a // different process. This involves running the unload handler and clearing // the page. Once WasSwappedOut is called, we also allow this process to // exit if there are no other active RenderViews in it. // Send an UpdateState message before we get swapped out. SyncNavigationState(); // Synchronously run the unload handler before sending the ACK. webview()->dispatchUnloadEvent(); // Swap out and stop sending any IPC messages that are not ACKs. SetSwappedOut(true); // Replace the page with a blank dummy URL. The unload handler will not be // run a second time, thanks to a check in FrameLoader::stopLoading. // TODO(creis): Need to add a better way to do this that avoids running the // beforeunload handler. For now, we just run it a second time silently. NavigateToSwappedOutURL(webview()->mainFrame()); // Let WebKit know that this view is hidden so it can drop resources and // stop compositing. webview()->setVisibilityState(WebKit::WebPageVisibilityStateHidden, false); } // Just echo back the params in the ACK. Send(new ViewHostMsg_SwapOut_ACK(routing_id_, params)); } void RenderViewImpl::NavigateToSwappedOutURL(WebKit::WebFrame* frame) { // We use loadRequest instead of loadHTMLString because the former commits // synchronously. Otherwise a new navigation can interrupt the navigation // to kSwappedOutURL. If that happens to be to the page we had been // showing, then WebKit will never send a commit and we'll be left spinning. CHECK(is_swapped_out_); GURL swappedOutURL(kSwappedOutURL); WebURLRequest request(swappedOutURL); frame->loadRequest(request); } void RenderViewImpl::OnClosePage() { FOR_EACH_OBSERVER(RenderViewObserver, observers_, ClosePage()); // TODO(creis): We'd rather use webview()->Close() here, but that currently // sets the WebView's delegate_ to NULL, preventing any JavaScript dialogs // in the onunload handler from appearing. For now, we're bypassing that and // calling the FrameLoader's CloseURL method directly. This should be // revisited to avoid having two ways to close a page. Having a single way // to close that can run onunload is also useful for fixing // http://b/issue?id=753080. webview()->dispatchUnloadEvent(); Send(new ViewHostMsg_ClosePage_ACK(routing_id_)); } void RenderViewImpl::OnThemeChanged() { #if defined(USE_AURA) // Aura doesn't care if we switch themes. #elif defined(OS_WIN) ui::NativeThemeWin::instance()->CloseHandles(); if (webview()) webview()->themeChanged(); #else // defined(OS_WIN) // TODO(port): we don't support theming on non-Windows platforms yet NOTIMPLEMENTED(); #endif } void RenderViewImpl::OnDisassociateFromPopupCount() { if (decrement_shared_popup_at_destruction_) shared_popup_counter_->data--; shared_popup_counter_ = new SharedRenderViewCounter(0); decrement_shared_popup_at_destruction_ = false; } bool RenderViewImpl::MaybeLoadAlternateErrorPage(WebFrame* frame, const WebURLError& error, bool replace) { // We only show alternate error pages in the main frame. They are // intended to assist the user when navigating, so there is not much // value in showing them for failed subframes. Ideally, we would be // able to use the TYPED transition type for this, but that flag is // not preserved across page reloads. if (frame->parent()) return false; // Use the alternate error page service if this is a DNS failure or // connection failure. int ec = error.reason; if (ec != net::ERR_NAME_NOT_RESOLVED && ec != net::ERR_CONNECTION_FAILED && ec != net::ERR_CONNECTION_REFUSED && ec != net::ERR_ADDRESS_UNREACHABLE && ec != net::ERR_CONNECTION_TIMED_OUT) { return false; } const GURL& error_page_url = GetAlternateErrorPageURL(error.unreachableURL, ec == net::ERR_NAME_NOT_RESOLVED ? DNS_ERROR : CONNECTION_ERROR); if (!error_page_url.is_valid()) return false; // Load an empty page first so there is an immediate response to the error, // and then kick off a request for the alternate error page. frame->loadHTMLString(std::string(), GURL(kUnreachableWebDataURL), error.unreachableURL, replace); // Now, create a fetcher for the error page and associate it with the data // source we just created via the LoadHTMLString call. That way if another // navigation occurs, the fetcher will get destroyed. DocumentState* document_state = DocumentState::FromDataSource(frame->provisionalDataSource()); document_state->set_alt_error_page_fetcher( new AltErrorPageResourceFetcher( error_page_url, frame, error, base::Bind(&RenderViewImpl::AltErrorPageFinished, base::Unretained(this)))); return true; } void RenderViewImpl::AltErrorPageFinished(WebFrame* frame, const WebURLError& original_error, const std::string& html) { // Here, we replace the blank page we loaded previously. // If we failed to download the alternate error page, LoadNavigationErrorPage // will simply display a default error page. LoadNavigationErrorPage(frame, WebURLRequest(), original_error, html, true); } void RenderViewImpl::OnMoveOrResizeStarted() { if (webview()) webview()->hidePopups(); } void RenderViewImpl::OnResize(const gfx::Size& new_size, const gfx::Rect& resizer_rect, bool is_fullscreen) { if (webview()) { webview()->hidePopups(); if (send_preferred_size_changes_) { webview()->mainFrame()->setCanHaveScrollbars( ShouldDisplayScrollbars(new_size.width(), new_size.height())); } UpdateScrollState(webview()->mainFrame()); } RenderWidget::OnResize(new_size, resizer_rect, is_fullscreen); } void RenderViewImpl::WillInitiatePaint() { // Notify the pepper plugins that we're about to paint. pepper_helper_->ViewWillInitiatePaint(); } void RenderViewImpl::DidInitiatePaint() { // Notify the pepper plugins that we've painted, and are waiting to flush. pepper_helper_->ViewInitiatedPaint(); } void RenderViewImpl::DidFlushPaint() { // Notify any pepper plugins that we painted. This will call into the plugin, // and we it may ask to close itself as a result. This will, in turn, modify // our set, possibly invalidating the iterator. So we iterate on a copy that // won't change out from under us. pepper_helper_->ViewFlushedPaint(); // If the RenderWidget is closing down then early-exit, otherwise we'll crash. // See crbug.com/112921. if (!webview()) return; WebFrame* main_frame = webview()->mainFrame(); // If we have a provisional frame we are between the start and commit stages // of loading and we don't want to save stats. if (!main_frame->provisionalDataSource()) { WebDataSource* ds = main_frame->dataSource(); DocumentState* document_state = DocumentState::FromDataSource(ds); // TODO(jar): The following code should all be inside a method, probably in // NavigatorState. Time now = Time::Now(); if (document_state->first_paint_time().is_null()) { document_state->set_first_paint_time(now); } if (document_state->first_paint_after_load_time().is_null() && !document_state->finish_load_time().is_null()) { document_state->set_first_paint_after_load_time(now); } } } void RenderViewImpl::OnViewContextSwapBuffersPosted() { RenderWidget::OnSwapBuffersPosted(); } void RenderViewImpl::OnViewContextSwapBuffersComplete() { RenderWidget::OnSwapBuffersComplete(); } void RenderViewImpl::OnViewContextSwapBuffersAborted() { RenderWidget::OnSwapBuffersAborted(); } webkit::ppapi::PluginInstance* RenderViewImpl::GetBitmapForOptimizedPluginPaint( const gfx::Rect& paint_bounds, TransportDIB** dib, gfx::Rect* location, gfx::Rect* clip, float* scale_factor) { return pepper_helper_->GetBitmapForOptimizedPluginPaint( paint_bounds, dib, location, clip, scale_factor); } gfx::Vector2d RenderViewImpl::GetScrollOffset() { WebSize scroll_offset = webview()->mainFrame()->scrollOffset(); return gfx::Vector2d(scroll_offset.width, scroll_offset.height); } void RenderViewImpl::OnClearFocusedNode() { if (webview()) webview()->clearFocusedNode(); } void RenderViewImpl::OnSetBackground(const SkBitmap& background) { if (webview()) webview()->setIsTransparent(!background.empty()); SetBackground(background); } void RenderViewImpl::OnSetAccessibilityMode(AccessibilityMode new_mode) { if (accessibility_mode_ == new_mode) return; accessibility_mode_ = new_mode; if (renderer_accessibility_) { delete renderer_accessibility_; renderer_accessibility_ = NULL; } if (accessibility_mode_ == AccessibilityModeComplete) renderer_accessibility_ = new RendererAccessibilityComplete(this); else if (accessibility_mode_ == AccessibilityModeEditableTextOnly) renderer_accessibility_ = new RendererAccessibilityFocusOnly(this); } void RenderViewImpl::OnSetActive(bool active) { if (webview()) webview()->setIsActive(active); #if defined(OS_MACOSX) std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->SetWindowFocus(active); } #endif } void RenderViewImpl::OnSetNavigationStartTime( const base::TimeTicks& browser_navigation_start) { if (!webview()) return; // Only the initial navigation can be a cross-renderer navigation. If we've // already navigated away from that page, we can ignore this message. if (page_id_ != -1) return; // browser_navigation_start is likely before this process existed, so we can't // use InterProcessTimeTicksConverter. Instead, the best we can do is just // ensure we don't report a bogus value in the future. base::TimeTicks navigation_start = std::min(base::TimeTicks::Now(), browser_navigation_start); webview()->mainFrame()->provisionalDataSource()->setNavigationStartTime( (navigation_start - base::TimeTicks()).InSecondsF()); } #if defined(OS_MACOSX) void RenderViewImpl::OnSetWindowVisibility(bool visible) { // Inform plugins that their container has changed visibility. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->SetContainerVisibility(visible); } } void RenderViewImpl::OnWindowFrameChanged(const gfx::Rect& window_frame, const gfx::Rect& view_frame) { // Inform plugins that their window's frame has changed. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->WindowFrameChanged(window_frame, view_frame); } } void RenderViewImpl::OnPluginImeCompositionCompleted(const string16& text, int plugin_id) { // WebPluginDelegateProxy is responsible for figuring out if this event // applies to it or not, so inform all the delegates. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->ImeCompositionCompleted(text, plugin_id); } } #endif // OS_MACOSX void RenderViewImpl::OnSetEditCommandsForNextKeyEvent( const EditCommands& edit_commands) { edit_commands_ = edit_commands; } void RenderViewImpl::Close() { // We need to grab a pointer to the doomed WebView before we destroy it. WebView* doomed = webview(); RenderWidget::Close(); g_view_map.Get().erase(doomed); g_routing_id_view_map.Get().erase(routing_id_); } void RenderViewImpl::DidHandleKeyEvent() { ClearEditCommands(); } bool RenderViewImpl::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { possible_drag_event_info_.event_source = ui::DragDropTypes::DRAG_EVENT_SOURCE_MOUSE; possible_drag_event_info_.event_location = gfx::Point(event.globalX, event.globalY); pepper_helper_->WillHandleMouseEvent(); // If the mouse is locked, only the current owner of the mouse lock can // process mouse events. return mouse_lock_dispatcher_->WillHandleMouseEvent(event); } bool RenderViewImpl::WillHandleGestureEvent( const WebKit::WebGestureEvent& event) { possible_drag_event_info_.event_source = ui::DragDropTypes::DRAG_EVENT_SOURCE_TOUCH; possible_drag_event_info_.event_location = gfx::Point(event.globalX, event.globalY); return false; } void RenderViewImpl::DidHandleMouseEvent(const WebMouseEvent& event) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidHandleMouseEvent(event)); } void RenderViewImpl::DidHandleTouchEvent(const WebTouchEvent& event) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidHandleTouchEvent(event)); } bool RenderViewImpl::HasTouchEventHandlersAt(const gfx::Point& point) const { if (!webview()) return false; return webview()->hasTouchEventHandlersAt(point); } void RenderViewImpl::OnWasHidden() { RenderWidget::OnWasHidden(); #if defined(OS_ANDROID) // Inform WebMediaPlayerManagerAndroid to release all media player resources. // unless some audio is playing. // If something is in progress the resource will not be freed, it will // only be freed once the tab is destroyed or if the user navigates away // via WebMediaPlayerAndroid::Destroy media_player_manager_->ReleaseMediaResources(); #endif if (webview()) { webview()->settings()->setMinimumTimerInterval( webkit_glue::kBackgroundTabTimerInterval); webview()->setVisibilityState(visibilityState(), false); } // Inform PPAPI plugins that their page is no longer visible. pepper_helper_->PageVisibilityChanged(false); #if defined(OS_MACOSX) // Inform NPAPI plugins that their container is no longer visible. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->SetContainerVisibility(false); } #endif // OS_MACOSX } void RenderViewImpl::OnWasShown(bool needs_repainting) { RenderWidget::OnWasShown(needs_repainting); if (webview()) { webview()->settings()->setMinimumTimerInterval( webkit_glue::kForegroundTabTimerInterval); webview()->setVisibilityState(visibilityState(), false); } // Inform PPAPI plugins that their page is visible. pepper_helper_->PageVisibilityChanged(true); #if defined(OS_MACOSX) // Inform NPAPI plugins that their container is now visible. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { (*plugin_it)->SetContainerVisibility(true); } #endif // OS_MACOSX } bool RenderViewImpl::SupportsAsynchronousSwapBuffers() { // Contexts using the command buffer support asynchronous swapbuffers. // See RenderViewImpl::createOutputSurface(). if (WebWidgetHandlesCompositorScheduling() || CommandLine::ForCurrentProcess()->HasSwitch(switches::kInProcessWebGL)) return false; return true; } bool RenderViewImpl::ForceCompositingModeEnabled() { return webkit_preferences_.force_compositing_mode; } void RenderViewImpl::OnSetFocus(bool enable) { RenderWidget::OnSetFocus(enable); if (webview() && webview()->isActive()) { // Notify all NPAPI plugins. std::set::iterator plugin_it; for (plugin_it = plugin_delegates_.begin(); plugin_it != plugin_delegates_.end(); ++plugin_it) { #if defined(OS_MACOSX) // RenderWidget's call to setFocus can cause the underlying webview's // activation state to change just like a call to setIsActive. if (enable) (*plugin_it)->SetWindowFocus(true); #endif (*plugin_it)->SetContentAreaFocus(enable); } } // Notify all Pepper plugins. pepper_helper_->OnSetFocus(enable); // Notify all BrowserPlugins of the RenderView's focus state. if (browser_plugin_manager_) browser_plugin_manager()->SetEmbedderFocus(this, enable); } void RenderViewImpl::PpapiPluginFocusChanged() { UpdateTextInputState(DO_NOT_SHOW_IME); UpdateSelectionBounds(); } void RenderViewImpl::PpapiPluginTextInputTypeChanged() { UpdateTextInputState(DO_NOT_SHOW_IME); if (renderer_accessibility_) renderer_accessibility_->FocusedNodeChanged(WebNode()); } void RenderViewImpl::PpapiPluginCaretPositionChanged() { UpdateSelectionBounds(); } bool RenderViewImpl::GetPpapiPluginCaretBounds(gfx::Rect* rect) { if (!pepper_helper_->IsPluginFocused()) return false; *rect = pepper_helper_->GetCaretBounds(); return true; } void RenderViewImpl::SimulateImeSetComposition( const string16& text, const std::vector& underlines, int selection_start, int selection_end) { OnImeSetComposition(text, underlines, selection_start, selection_end); } void RenderViewImpl::SimulateImeConfirmComposition( const string16& text, const ui::Range& replacement_range) { OnImeConfirmComposition(text, replacement_range); } void RenderViewImpl::PpapiPluginCancelComposition() { Send(new ViewHostMsg_ImeCancelComposition(routing_id())); const ui::Range range(ui::Range::InvalidRange()); const std::vector empty_bounds; UpdateCompositionInfo(range, empty_bounds); } void RenderViewImpl::PpapiPluginSelectionChanged() { SyncSelectionIfRequired(); } void RenderViewImpl::PpapiPluginCreated(RendererPpapiHost* host) { FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCreatePepperPlugin(host)); } void RenderViewImpl::OnImeSetComposition( const string16& text, const std::vector& underlines, int selection_start, int selection_end) { if (pepper_helper_->IsPluginFocused()) { // When a PPAPI plugin has focus, we bypass WebKit. pepper_helper_->OnImeSetComposition(text, underlines, selection_start, selection_end); } else { #if defined(OS_WIN) // When a plug-in has focus, we create platform-specific IME data used by // our IME emulator and send it directly to the focused plug-in, i.e. we // bypass WebKit. (WebPluginDelegate dispatches this IME data only when its // instance ID is the same one as the specified ID.) if (focused_plugin_id_ >= 0) { std::vector clauses; std::vector target; for (size_t i = 0; i < underlines.size(); ++i) { clauses.push_back(underlines[i].startOffset); clauses.push_back(underlines[i].endOffset); if (underlines[i].thick) { target.clear(); target.push_back(underlines[i].startOffset); target.push_back(underlines[i].endOffset); } } std::set::iterator it; for (it = plugin_delegates_.begin(); it != plugin_delegates_.end(); ++it) { (*it)->ImeCompositionUpdated(text, clauses, target, selection_end, focused_plugin_id_); } return; } #endif RenderWidget::OnImeSetComposition(text, underlines, selection_start, selection_end); } } void RenderViewImpl::OnImeConfirmComposition( const string16& text, const ui::Range& replacement_range) { if (pepper_helper_->IsPluginFocused()) { // When a PPAPI plugin has focus, we bypass WebKit. pepper_helper_->OnImeConfirmComposition(text); } else { #if defined(OS_WIN) // Same as OnImeSetComposition(), we send the text from IMEs directly to // plug-ins. When we send IME text directly to plug-ins, we should not send // it to WebKit to prevent WebKit from controlling IMEs. // TODO(thakis): Honor |replacement_range| for plugins? if (focused_plugin_id_ >= 0) { std::set::iterator it; for (it = plugin_delegates_.begin(); it != plugin_delegates_.end(); ++it) { (*it)->ImeCompositionCompleted(text, focused_plugin_id_); } return; } #endif if (replacement_range.IsValid() && webview()) { // Select the text in |replacement_range|, it will then be replaced by // text added by the call to RenderWidget::OnImeConfirmComposition(). if (WebFrame* frame = webview()->focusedFrame()) { WebRange webrange = WebRange::fromDocumentRange( frame, replacement_range.start(), replacement_range.length()); if (!webrange.isNull()) frame->selectRange(webrange); } } RenderWidget::OnImeConfirmComposition(text, replacement_range); } } void RenderViewImpl::SetDeviceScaleFactor(float device_scale_factor) { RenderWidget::SetDeviceScaleFactor(device_scale_factor); if (webview()) webview()->setDeviceScaleFactor(device_scale_factor); } ui::TextInputType RenderViewImpl::GetTextInputType() { return pepper_helper_->IsPluginFocused() ? pepper_helper_->GetTextInputType() : RenderWidget::GetTextInputType(); } void RenderViewImpl::GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) { if (pepper_helper_->IsPluginFocused()) { // TODO(kinaba) http://crbug.com/101101 // Current Pepper IME API does not handle selection bounds. So we simply // use the caret position as an empty range for now. It will be updated // after Pepper API equips features related to surrounding text retrieval. gfx::Rect caret = pepper_helper_->GetCaretBounds(); *start = caret; *end = caret; return; } RenderWidget::GetSelectionBounds(start, end); } void RenderViewImpl::GetCompositionCharacterBounds( std::vector* bounds) { DCHECK(bounds); bounds->clear(); if (!webview()) return; size_t start_offset = 0; size_t character_count = 0; if (!webview()->compositionRange(&start_offset, &character_count)) return; if (character_count == 0) return; WebKit::WebFrame* frame = webview()->focusedFrame(); if (!frame) return; bounds->reserve(character_count); WebKit::WebRect webrect; for (size_t i = 0; i < character_count; ++i) { if (!frame->firstRectForCharacterRange(start_offset + i, 1, webrect)) { DLOG(ERROR) << "Could not retrieve character rectangle at " << i; bounds->clear(); return; } bounds->push_back(webrect); } } bool RenderViewImpl::CanComposeInline() { return pepper_helper_->IsPluginFocused() ? pepper_helper_->CanComposeInline() : true; } #if defined(OS_WIN) void RenderViewImpl::PluginFocusChanged(bool focused, int plugin_id) { if (focused) focused_plugin_id_ = plugin_id; else focused_plugin_id_ = -1; } #endif #if defined(OS_MACOSX) void RenderViewImpl::PluginFocusChanged(bool focused, int plugin_id) { Send(new ViewHostMsg_PluginFocusChanged(routing_id(), focused, plugin_id)); } void RenderViewImpl::StartPluginIme() { IPC::Message* msg = new ViewHostMsg_StartPluginIme(routing_id()); // This message can be sent during event-handling, and needs to be delivered // within that context. msg->set_unblock(true); Send(msg); } gfx::PluginWindowHandle RenderViewImpl::AllocateFakePluginWindowHandle( bool opaque, bool root) { gfx::PluginWindowHandle window = gfx::kNullPluginWindow; Send(new ViewHostMsg_AllocateFakePluginWindowHandle( routing_id(), opaque, root, &window)); if (window) { fake_plugin_window_handles_.insert(window); } return window; } void RenderViewImpl::DestroyFakePluginWindowHandle( gfx::PluginWindowHandle window) { if (window && fake_plugin_window_handles_.find(window) != fake_plugin_window_handles_.end()) { Send(new ViewHostMsg_DestroyFakePluginWindowHandle(routing_id(), window)); fake_plugin_window_handles_.erase(window); } } void RenderViewImpl::AcceleratedSurfaceSetIOSurface( gfx::PluginWindowHandle window, int32 width, int32 height, uint64 io_surface_identifier) { Send(new ViewHostMsg_AcceleratedSurfaceSetIOSurface( routing_id(), window, width, height, io_surface_identifier)); } void RenderViewImpl::AcceleratedSurfaceSetTransportDIB( gfx::PluginWindowHandle window, int32 width, int32 height, TransportDIB::Handle transport_dib) { Send(new ViewHostMsg_AcceleratedSurfaceSetTransportDIB( routing_id(), window, width, height, transport_dib)); } TransportDIB::Handle RenderViewImpl::AcceleratedSurfaceAllocTransportDIB( size_t size) { TransportDIB::Handle dib_handle; // Assume this is a synchronous RPC. if (Send(new ViewHostMsg_AllocTransportDIB(size, true, &dib_handle))) return dib_handle; // Return an invalid handle if Send() fails. return TransportDIB::DefaultHandleValue(); } void RenderViewImpl::AcceleratedSurfaceFreeTransportDIB( TransportDIB::Id dib_id) { Send(new ViewHostMsg_FreeTransportDIB(dib_id)); } void RenderViewImpl::AcceleratedSurfaceBuffersSwapped( gfx::PluginWindowHandle window, uint64 surface_handle) { Send(new ViewHostMsg_AcceleratedSurfaceBuffersSwapped( routing_id(), window, surface_handle)); } #endif // defined(OS_MACOSX) bool RenderViewImpl::ScheduleFileChooser( const FileChooserParams& params, WebFileChooserCompletion* completion) { static const size_t kMaximumPendingFileChooseRequests = 4; if (file_chooser_completions_.size() > kMaximumPendingFileChooseRequests) { // This sanity check prevents too many file choose requests from getting // queued which could DoS the user. Getting these is most likely a // programming error (there are many ways to DoS the user so it's not // considered a "real" security check), either in JS requesting many file // choosers to pop up, or in a plugin. // // TODO(brettw) we might possibly want to require a user gesture to open // a file picker, which will address this issue in a better way. return false; } file_chooser_completions_.push_back(linked_ptr( new PendingFileChooser(params, completion))); if (file_chooser_completions_.size() == 1) { // Actually show the browse dialog when this is the first request. Send(new ViewHostMsg_RunFileChooser(routing_id_, params)); } return true; } WebKit::WebGeolocationClient* RenderViewImpl::geolocationClient() { if (!geolocation_dispatcher_) geolocation_dispatcher_ = new GeolocationDispatcher(this); return geolocation_dispatcher_; } WebKit::WebSpeechInputController* RenderViewImpl::speechInputController( WebKit::WebSpeechInputListener* listener) { #if defined(ENABLE_INPUT_SPEECH) if (!input_tag_speech_dispatcher_) input_tag_speech_dispatcher_ = new InputTagSpeechDispatcher(this, listener); #endif return input_tag_speech_dispatcher_; } WebKit::WebSpeechRecognizer* RenderViewImpl::speechRecognizer() { #if defined(ENABLE_INPUT_SPEECH) if (!speech_recognition_dispatcher_) speech_recognition_dispatcher_ = new SpeechRecognitionDispatcher(this); #endif return speech_recognition_dispatcher_; } WebKit::WebDeviceOrientationClient* RenderViewImpl::deviceOrientationClient() { if (!device_orientation_dispatcher_) device_orientation_dispatcher_ = new DeviceOrientationDispatcher(this); return device_orientation_dispatcher_; } void RenderViewImpl::zoomLimitsChanged(double minimum_level, double maximum_level) { // For now, don't remember plugin zoom values. We don't want to mix them with // normal web content (i.e. a fixed layout plugin would usually want them // different). bool remember = !webview()->mainFrame()->document().isPluginDocument(); int minimum_percent = static_cast( WebView::zoomLevelToZoomFactor(minimum_level) * 100); int maximum_percent = static_cast( WebView::zoomLevelToZoomFactor(maximum_level) * 100); Send(new ViewHostMsg_UpdateZoomLimits( routing_id_, minimum_percent, maximum_percent, remember)); } void RenderViewImpl::zoomLevelChanged() { bool remember = !webview()->mainFrame()->document().isPluginDocument(); float zoom_level = webview()->zoomLevel(); FOR_EACH_OBSERVER(RenderViewObserver, observers_, ZoomLevelChanged()); // Tell the browser which url got zoomed so it can update the menu and the // saved values if necessary Send(new ViewHostMsg_DidZoomURL( routing_id_, zoom_level, remember, GURL(webview()->mainFrame()->document().url()))); } void RenderViewImpl::registerProtocolHandler(const WebString& scheme, const WebString& base_url, const WebString& url, const WebString& title) { bool user_gesture = (webview()->focusedFrame() && webview()->focusedFrame()->isProcessingUserGesture()); GURL base(base_url); GURL absolute_url = base.Resolve(UTF16ToUTF8(url)); if (base.GetOrigin() != absolute_url.GetOrigin()) { return; } Send(new ViewHostMsg_RegisterProtocolHandler(routing_id_, UTF16ToUTF8(scheme), absolute_url, title, user_gesture)); } WebKit::WebPageVisibilityState RenderViewImpl::visibilityState() const { WebKit::WebPageVisibilityState current_state = is_hidden() ? WebKit::WebPageVisibilityStateHidden : WebKit::WebPageVisibilityStateVisible; WebKit::WebPageVisibilityState override_state = current_state; if (GetContentClient()->renderer()-> ShouldOverridePageVisibilityState(this, &override_state)) return override_state; return current_state; } WebKit::WebUserMediaClient* RenderViewImpl::userMediaClient() { EnsureMediaStreamImpl(); return media_stream_impl_; } void RenderViewImpl::draggableRegionsChanged() { FOR_EACH_OBSERVER( RenderViewObserver, observers_, DraggableRegionsChanged(webview()->mainFrame())); } #if defined(OS_ANDROID) WebContentDetectionResult RenderViewImpl::detectContentAround( const WebHitTestResult& touch_hit) { DCHECK(!touch_hit.isNull()); DCHECK(!touch_hit.node().isNull()); DCHECK(touch_hit.node().isTextNode()); // Process the position with all the registered content detectors until // a match is found. Priority is provided by their relative order. for (ContentDetectorList::const_iterator it = content_detectors_.begin(); it != content_detectors_.end(); ++it) { ContentDetector::Result content = (*it)->FindTappedContent(touch_hit); if (content.valid) { return WebContentDetectionResult(content.content_boundaries, UTF8ToUTF16(content.text), content.intent_url); } } return WebContentDetectionResult(); } void RenderViewImpl::scheduleContentIntent(const WebURL& intent) { // Introduce a short delay so that the user can notice the content. MessageLoop::current()->PostDelayedTask( FROM_HERE, base::Bind(&RenderViewImpl::LaunchAndroidContentIntent, AsWeakPtr(), intent, expected_content_intent_id_), base::TimeDelta::FromMilliseconds(kContentIntentDelayMilliseconds)); } void RenderViewImpl::cancelScheduledContentIntents() { ++expected_content_intent_id_; } void RenderViewImpl::LaunchAndroidContentIntent(const GURL& intent, size_t request_id) { if (request_id != expected_content_intent_id_) return; // Remove the content highlighting if any. scheduleComposite(); if (!intent.is_empty()) Send(new ViewHostMsg_StartContentIntent(routing_id_, intent)); } bool RenderViewImpl::openDateTimeChooser( const WebKit::WebDateTimeChooserParams& params, WebKit::WebDateTimeChooserCompletion* completion) { date_time_picker_client_.reset( new RendererDateTimePicker(this, params, completion)); return date_time_picker_client_->Open(); } #endif // defined(OS_ANDROID) void RenderViewImpl::OnAsyncFileOpened( base::PlatformFileError error_code, IPC::PlatformFileForTransit file_for_transit, int message_id) { pepper_helper_->OnAsyncFileOpened( error_code, IPC::PlatformFileForTransitToPlatformFile(file_for_transit), message_id); } void RenderViewImpl::OnPpapiBrokerChannelCreated( int request_id, const IPC::ChannelHandle& handle) { pepper_helper_->OnPpapiBrokerChannelCreated(request_id, handle); } void RenderViewImpl::OnPpapiBrokerPermissionResult( int request_id, bool result) { pepper_helper_->OnPpapiBrokerPermissionResult(request_id, result); } #if defined(OS_MACOSX) void RenderViewImpl::OnSelectPopupMenuItem(int selected_index) { if (external_popup_menu_ == NULL) { // Crash reports from the field indicate that we can be notified with a // NULL external popup menu (we probably get notified twice). // If you hit this please file a bug against jcivelli and include the page // and steps to repro. NOTREACHED(); return; } external_popup_menu_->DidSelectItem(selected_index); external_popup_menu_.reset(); } #endif #if defined(OS_ANDROID) void RenderViewImpl::OnSelectPopupMenuItems( bool canceled, const std::vector& selected_indices) { // It is possible to receive more than one of these calls if the user presses // a select faster than it takes for the show-select-popup IPC message to make // it to the browser UI thread. Ignore the extra-messages. // TODO(jcivelli): http:/b/5793321 Implement a better fix, as detailed in bug. if (!external_popup_menu_.get()) return; external_popup_menu_->DidSelectItems(canceled, selected_indices); external_popup_menu_.reset(); } #endif void RenderViewImpl::OnContextMenuClosed( const CustomContextMenuContext& custom_context) { if (custom_context.request_id) { // External request, should be in our map. ContextMenuClient* client = pending_context_menus_.Lookup(custom_context.request_id); if (client) { client->OnMenuClosed(custom_context.request_id); pending_context_menus_.Remove(custom_context.request_id); } } else { // Internal request, forward to WebKit. context_menu_node_.reset(); } } void RenderViewImpl::OnEnableViewSourceMode() { if (!webview()) return; WebFrame* main_frame = webview()->mainFrame(); if (!main_frame) return; main_frame->enableViewSourceMode(true); } bool RenderViewImpl::WebWidgetHandlesCompositorScheduling() const { return !!RenderThreadImpl::current()->compositor_thread(); } void RenderViewImpl::OnJavaBridgeInit() { DCHECK(!java_bridge_dispatcher_); #if defined(ENABLE_JAVA_BRIDGE) java_bridge_dispatcher_ = new JavaBridgeDispatcher(this); #endif } void RenderViewImpl::OnDisownOpener() { if (!webview()) return; WebFrame* main_frame = webview()->mainFrame(); if (main_frame && main_frame->opener()) main_frame->setOpener(NULL); } void RenderViewImpl::OnUpdatedFrameTree( int process_id, int route_id, const std::string& frame_tree) { // TODO(nasko): Remove once http://crbug.com/153701 is fixed. DCHECK(false); // We should only act on this message if we are swapped out. It's possible // for this to happen due to races. if (!is_swapped_out_) return; base::DictionaryValue* frames = NULL; scoped_ptr tree(base::JSONReader::Read(frame_tree)); if (tree.get() && tree->IsType(base::Value::TYPE_DICTIONARY)) tree->GetAsDictionary(&frames); updating_frame_tree_ = true; active_frame_id_map_.clear(); target_process_id_ = process_id; target_routing_id_ = route_id; CreateFrameTree(webview()->mainFrame(), frames); updating_frame_tree_ = false; } #if defined(OS_ANDROID) bool RenderViewImpl::didTapMultipleTargets( const WebKit::WebGestureEvent& event, const WebVector& target_rects) { gfx::Rect finger_rect( event.x - event.data.tap.width / 2, event.y - event.data.tap.height / 2, event.data.tap.width, event.data.tap.height); gfx::Rect zoom_rect; float scale = DisambiguationPopupHelper::ComputeZoomAreaAndScaleFactor( finger_rect, target_rects, GetSize(), &zoom_rect); if (!scale) return false; gfx::Size canvas_size = zoom_rect.size(); canvas_size = ToCeiledSize(gfx::ScaleSize(canvas_size, scale)); TransportDIB* transport_dib = NULL; { scoped_ptr canvas( RenderProcess::current()->GetDrawingCanvas(&transport_dib, gfx::Rect(canvas_size))); if (!canvas.get()) return false; canvas->scale(scale, scale); canvas->translate(-zoom_rect.x(), -zoom_rect.y()); webwidget_->paint(webkit_glue::ToWebCanvas(canvas.get()), zoom_rect, WebWidget::ForceSoftwareRenderingAndIgnoreGPUResidentContent); } Send(new ViewHostMsg_ShowDisambiguationPopup(routing_id_, zoom_rect, canvas_size, transport_dib->id())); return true; } #endif void RenderViewImpl::OnReleaseDisambiguationPopupDIB( TransportDIB::Handle dib_handle) { TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); RenderProcess::current()->ReleaseTransportDIB(dib); } } // namespace content