third_party/re2: Remove remove-static-initializers.patch.
[chromium-blink-merge.git] / content / renderer / render_view_impl.h
blob97b2606e942e194c192152196e1fec38161a6611
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
8 #include <deque>
9 #include <map>
10 #include <set>
11 #include <string>
12 #include <vector>
14 #include "base/basictypes.h"
15 #include "base/gtest_prod_util.h"
16 #include "base/id_map.h"
17 #include "base/memory/linked_ptr.h"
18 #include "base/memory/weak_ptr.h"
19 #include "base/observer_list.h"
20 #include "base/process/process.h"
21 #include "base/strings/string16.h"
22 #include "base/timer/timer.h"
23 #include "build/build_config.h"
24 #include "cc/input/top_controls_state.h"
25 #include "cc/resources/shared_bitmap.h"
26 #include "content/common/content_export.h"
27 #include "content/common/drag_event_source_info.h"
28 #include "content/common/edit_command.h"
29 #include "content/common/frame_message_enums.h"
30 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
31 #include "content/common/navigation_gesture.h"
32 #include "content/common/view_message_enums.h"
33 #include "content/public/common/page_zoom.h"
34 #include "content/public/common/referrer.h"
35 #include "content/public/common/renderer_preferences.h"
36 #include "content/public/common/stop_find_action.h"
37 #include "content/public/common/top_controls_state.h"
38 #include "content/public/common/web_preferences.h"
39 #include "content/public/renderer/render_view.h"
40 #include "content/renderer/mouse_lock_dispatcher.h"
41 #include "content/renderer/render_frame_impl.h"
42 #include "content/renderer/render_widget.h"
43 #include "content/renderer/stats_collection_observer.h"
44 #include "ipc/ipc_platform_file.h"
45 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
46 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
47 #include "third_party/WebKit/public/web/WebAXObject.h"
48 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
49 #include "third_party/WebKit/public/web/WebDataSource.h"
50 #include "third_party/WebKit/public/web/WebElement.h"
51 #include "third_party/WebKit/public/web/WebHistoryItem.h"
52 #include "third_party/WebKit/public/web/WebIconURL.h"
53 #include "third_party/WebKit/public/web/WebInputEvent.h"
54 #include "third_party/WebKit/public/web/WebNavigationType.h"
55 #include "third_party/WebKit/public/web/WebNode.h"
56 #include "third_party/WebKit/public/web/WebPageSerializerClient.h"
57 #include "third_party/WebKit/public/web/WebSecurityOrigin.h"
58 #include "third_party/WebKit/public/web/WebViewClient.h"
59 #include "ui/base/window_open_disposition.h"
60 #include "ui/surface/transport_dib.h"
62 #if defined(OS_ANDROID)
63 #include "content/renderer/android/content_detector.h"
64 #include "content/renderer/android/renderer_date_time_picker.h"
65 #include "third_party/WebKit/public/web/WebContentDetectionResult.h"
66 #endif
68 #if defined(COMPILER_MSVC)
69 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the
70 // root. VS warns when we inherit the WebWidgetClient method implementations
71 // from RenderWidget. It's safe to ignore that warning.
72 #pragma warning(disable: 4250)
73 #endif
75 class PepperDeviceTest;
76 class SkBitmap;
77 struct PP_NetAddress_Private;
78 struct ViewMsg_New_Params;
79 struct ViewMsg_Resize_Params;
80 struct ViewMsg_StopFinding_Params;
82 namespace base {
83 class CommandLine;
86 namespace blink {
87 class WebApplicationCacheHost;
88 class WebApplicationCacheHostClient;
89 class WebDOMMessageEvent;
90 class WebDataSource;
91 class WebDateTimeChooserCompletion;
92 class WebDragData;
93 class WebGestureEvent;
94 class WebIconURL;
95 class WebImage;
96 class WebPeerConnection00Handler;
97 class WebPeerConnection00HandlerClient;
98 class WebMouseEvent;
99 class WebPeerConnectionHandler;
100 class WebPeerConnectionHandlerClient;
101 class WebSpeechRecognizer;
102 class WebStorageNamespace;
103 class WebTouchEvent;
104 class WebURLRequest;
105 struct WebActiveWheelFlingParameters;
106 struct WebDateTimeChooserParams;
107 struct WebFileChooserParams;
108 struct WebFindOptions;
109 struct WebMediaPlayerAction;
110 struct WebPluginAction;
111 struct WebPoint;
112 struct WebWindowFeatures;
114 #if defined(OS_ANDROID)
115 class WebHitTestResult;
116 #endif
117 } // namespace blink
119 namespace content {
121 class HistoryController;
122 class HistoryEntry;
123 class MouseLockDispatcher;
124 class PageState;
125 class PepperPluginInstanceImpl;
126 class RenderViewImplTest;
127 class RenderViewObserver;
128 class RenderViewTest;
129 class RendererDateTimePicker;
130 class RendererWebColorChooserImpl;
131 class SpeechRecognitionDispatcher;
132 class WebPluginDelegateProxy;
133 struct DropData;
134 struct FaviconURL;
135 struct FileChooserParams;
136 struct FileChooserFileInfo;
137 struct RenderViewImplParams;
139 #if defined(OS_ANDROID)
140 class WebMediaPlayerProxyAndroid;
141 #endif
144 // RenderView is an object that manages a WebView object, and provides a
145 // communication interface with an embedding application process.
147 // DEPRECATED: RenderViewImpl is being removed as part of the SiteIsolation
148 // project. New code should be added to RenderFrameImpl instead.
150 // For context, please see https://crbug.com/467770 and
151 // http://www.chromium.org/developers/design-documents/site-isolation.
152 class CONTENT_EXPORT RenderViewImpl
153 : public RenderWidget,
154 NON_EXPORTED_BASE(public blink::WebViewClient),
155 NON_EXPORTED_BASE(public blink::WebPageSerializerClient),
156 public RenderView,
157 public base::SupportsWeakPtr<RenderViewImpl> {
158 public:
159 // Creates a new RenderView. |opener_id| is the routing ID of the RenderView
160 // responsible for creating this RenderView. Note that if the original opener
161 // has been closed, |window_was_created_with_opener| will be true and
162 // |opener_id| will be MSG_ROUTING_NONE. When |swapped_out| is true, the
163 // |proxy_routing_id| is specified, so a RenderFrameProxy can be created for
164 // this RenderView's main RenderFrame.
165 static RenderViewImpl* Create(const ViewMsg_New_Params& params,
166 CompositorDependencies* compositor_deps,
167 bool was_created_by_renderer);
169 // Used by content_layouttest_support to hook into the creation of
170 // RenderViewImpls.
171 static void InstallCreateHook(
172 RenderViewImpl* (*create_render_view_impl)(const ViewMsg_New_Params&));
174 // Returns the RenderViewImpl containing the given WebView.
175 static RenderViewImpl* FromWebView(blink::WebView* webview);
177 // Returns the RenderViewImpl for the given routing ID.
178 static RenderViewImpl* FromRoutingID(int routing_id);
180 static size_t GetRenderViewCount();
182 // May return NULL when the view is closing.
183 blink::WebView* webview() const;
185 const WebPreferences& webkit_preferences() const {
186 return webkit_preferences_;
189 const RendererPreferences& renderer_preferences() const {
190 return renderer_preferences_;
193 void set_send_content_state_immediately(bool value) {
194 send_content_state_immediately_ = value;
197 MouseLockDispatcher* mouse_lock_dispatcher() {
198 return mouse_lock_dispatcher_;
201 HistoryController* history_controller() {
202 return history_controller_.get();
205 // Functions to add and remove observers for this object.
206 void AddObserver(RenderViewObserver* observer);
207 void RemoveObserver(RenderViewObserver* observer);
209 // Returns the StatsCollectionObserver associated with this view, or NULL
210 // if one wasn't created;
211 StatsCollectionObserver* GetStatsCollectionObserver() {
212 return stats_collection_observer_.get();
215 // Adds the given file chooser request to the file_chooser_completion_ queue
216 // (see that var for more) and requests the chooser be displayed if there are
217 // no other waiting items in the queue.
219 // Returns true if the chooser was successfully scheduled. False means we
220 // didn't schedule anything.
221 bool ScheduleFileChooser(const FileChooserParams& params,
222 blink::WebFileChooserCompletion* completion);
224 #if defined(OS_ANDROID)
225 void DismissDateTimeDialog();
226 #endif
228 bool is_loading() const { return frames_in_progress_ != 0; }
230 void FrameDidStartLoading(blink::WebFrame* frame);
231 void FrameDidStopLoading(blink::WebFrame* frame);
233 // Plugin-related functions --------------------------------------------------
235 #if defined(ENABLE_PLUGINS)
236 // Get/set the plugin which will be used as to handle document find requests.
237 void set_plugin_find_handler(PepperPluginInstanceImpl* plugin) {
238 plugin_find_handler_ = plugin;
240 PepperPluginInstanceImpl* plugin_find_handler() {
241 return plugin_find_handler_;
244 PepperPluginInstanceImpl* focused_pepper_plugin() {
245 return focused_pepper_plugin_;
247 PepperPluginInstanceImpl* pepper_last_mouse_event_target() {
248 return pepper_last_mouse_event_target_;
250 void set_pepper_last_mouse_event_target(PepperPluginInstanceImpl* plugin) {
251 pepper_last_mouse_event_target_ = plugin;
254 #if defined(OS_MACOSX) || defined(OS_WIN)
255 // Informs the render view that the given plugin has gained or lost focus.
256 void PluginFocusChanged(bool focused, int plugin_id);
257 #endif
259 #if defined(OS_MACOSX)
260 // Starts plugin IME.
261 void StartPluginIme();
262 #endif
264 // Indicates that the given instance has been created.
265 void PepperInstanceCreated(PepperPluginInstanceImpl* instance);
267 // Indicates that the given instance is being destroyed. This is called from
268 // the destructor, so it's important that the instance is not dereferenced
269 // from this call.
270 void PepperInstanceDeleted(PepperPluginInstanceImpl* instance);
272 // Notification that the given plugin is focused or unfocused.
273 void PepperFocusChanged(PepperPluginInstanceImpl* instance, bool focused);
275 void RegisterPluginDelegate(WebPluginDelegateProxy* delegate);
276 void UnregisterPluginDelegate(WebPluginDelegateProxy* delegate);
277 #endif // ENABLE_PLUGINS
279 void TransferActiveWheelFlingAnimation(
280 const blink::WebActiveWheelFlingParameters& params);
282 // Returns true if the focused element is editable text from the perspective
283 // of IME support (also used for on-screen keyboard). Works correctly inside
284 // supported PPAPI plugins.
285 bool HasIMETextFocus();
287 // Dispatches the current navigation state to the browser. Called on a
288 // periodic timer so we don't send too many messages.
289 void SyncNavigationState();
291 // Returns the length of the session history of this RenderView. Note that
292 // this only coincides with the actual length of the session history if this
293 // RenderView is the currently active RenderView of a WebContents.
294 unsigned GetLocalSessionHistoryLengthForTesting() const;
296 // Invokes OnSetFocus and marks the widget as active depending on the value
297 // of |enable|. This is used for layout tests that need to control the focus
298 // synchronously from the renderer.
299 void SetFocusAndActivateForTesting(bool enable);
301 // Change the device scale factor and force the compositor to resize.
302 void SetDeviceScaleFactorForTesting(float factor);
304 // Change the device ICC color profile while running a layout test.
305 void SetDeviceColorProfileForTesting(const std::vector<char>& color_profile);
306 void ResetDeviceColorProfileForTesting() override;
308 // Used to force the size of a window when running layout tests.
309 void ForceResizeForTesting(const gfx::Size& new_size);
311 void UseSynchronousResizeModeForTesting(bool enable);
313 // Control autoresize mode.
314 void EnableAutoResizeForTesting(const gfx::Size& min_size,
315 const gfx::Size& max_size);
316 void DisableAutoResizeForTesting(const gfx::Size& new_size);
318 // IPC::Listener implementation ----------------------------------------------
320 bool OnMessageReceived(const IPC::Message& msg) override;
322 // blink::WebWidgetClient implementation ------------------------------------
324 // Most methods are handled by RenderWidget.
325 virtual void didFocus();
326 virtual void didBlur();
327 virtual void show(blink::WebNavigationPolicy policy);
328 virtual bool requestPointerLock();
329 virtual void requestPointerUnlock();
330 virtual bool isPointerLocked();
331 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event,
332 bool event_cancelled) override;
333 virtual void initializeLayerTreeView() override;
335 // blink::WebViewClient implementation --------------------------------------
337 virtual blink::WebView* createView(blink::WebLocalFrame* creator,
338 const blink::WebURLRequest& request,
339 const blink::WebWindowFeatures& features,
340 const blink::WebString& frame_name,
341 blink::WebNavigationPolicy policy,
342 bool suppress_opener);
343 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type);
344 virtual blink::WebStorageNamespace* createSessionStorageNamespace();
345 virtual void printPage(blink::WebLocalFrame* frame);
346 virtual bool enumerateChosenDirectory(
347 const blink::WebString& path,
348 blink::WebFileChooserCompletion* chooser_completion);
349 virtual void saveImageFromDataURL(const blink::WebString& data_url);
350 virtual void didCancelCompositionOnSelectionChange();
351 virtual bool handleCurrentKeyboardEvent();
352 virtual bool runFileChooser(
353 const blink::WebFileChooserParams& params,
354 blink::WebFileChooserCompletion* chooser_completion);
355 void SetValidationMessageDirection(base::string16* main_text,
356 blink::WebTextDirection main_text_hint,
357 base::string16* sub_text,
358 blink::WebTextDirection sub_text_hint);
359 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view,
360 const blink::WebString& main_text,
361 blink::WebTextDirection main_text_hint,
362 const blink::WebString& sub_text,
363 blink::WebTextDirection hint) override;
364 virtual void hideValidationMessage() override;
365 virtual void moveValidationMessage(
366 const blink::WebRect& anchor_in_root_view) override;
367 virtual void setStatusText(const blink::WebString& text);
368 virtual void setMouseOverURL(const blink::WebURL& url);
369 virtual void setKeyboardFocusURL(const blink::WebURL& url);
370 virtual void startDragging(blink::WebLocalFrame* frame,
371 const blink::WebDragData& data,
372 blink::WebDragOperationsMask mask,
373 const blink::WebImage& image,
374 const blink::WebPoint& imageOffset);
375 virtual bool acceptsLoadDrops();
376 virtual void focusNext();
377 virtual void focusPrevious();
378 virtual void focusedNodeChanged(const blink::WebNode& fromNode,
379 const blink::WebNode& toNode);
380 virtual void didUpdateLayout();
381 #if defined(OS_ANDROID) || defined(TOOLKIT_VIEWS)
382 virtual bool didTapMultipleTargets(
383 const blink::WebSize& inner_viewport_offset,
384 const blink::WebRect& touch_rect,
385 const blink::WebVector<blink::WebRect>& target_rects);
386 #endif
387 virtual blink::WebString acceptLanguages();
388 virtual void navigateBackForwardSoon(int offset);
389 virtual int historyBackListCount();
390 virtual int historyForwardListCount();
391 virtual blink::WebSpeechRecognizer* speechRecognizer();
392 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
393 virtual void zoomLevelChanged();
394 virtual void pageScaleFactorChanged();
395 virtual double zoomLevelToZoomFactor(double zoom_level) const;
396 virtual double zoomFactorToZoomLevel(double factor) const;
397 virtual void registerProtocolHandler(const blink::WebString& scheme,
398 const blink::WebURL& url,
399 const blink::WebString& title);
400 virtual void unregisterProtocolHandler(const blink::WebString& scheme,
401 const blink::WebURL& url);
402 virtual blink::WebPageVisibilityState visibilityState() const;
403 virtual void draggableRegionsChanged();
405 #if defined(OS_ANDROID)
406 virtual void scheduleContentIntent(const blink::WebURL& intent);
407 virtual void cancelScheduledContentIntents();
408 virtual blink::WebContentDetectionResult detectContentAround(
409 const blink::WebHitTestResult& touch_hit);
411 // Only used on Android since all other platforms implement
412 // date and time input fields using MULTIPLE_FIELDS_UI
413 virtual bool openDateTimeChooser(const blink::WebDateTimeChooserParams&,
414 blink::WebDateTimeChooserCompletion*);
415 virtual void didScrollWithKeyboard(const blink::WebSize& delta);
416 #endif
418 // blink::WebPageSerializerClient implementation ----------------------------
420 virtual void didSerializeDataForFrame(
421 const blink::WebURL& frame_url,
422 const blink::WebCString& data,
423 PageSerializationStatus status) override;
425 // RenderView implementation -------------------------------------------------
427 bool Send(IPC::Message* message) override;
428 RenderFrameImpl* GetMainRenderFrame() override;
429 int GetRoutingID() const override;
430 gfx::Size GetSize() const override;
431 WebPreferences& GetWebkitPreferences() override;
432 void SetWebkitPreferences(const WebPreferences& preferences) override;
433 blink::WebView* GetWebView() override;
434 bool IsEditableNode(const blink::WebNode& node) const override;
435 bool ShouldDisplayScrollbars(int width, int height) const override;
436 int GetEnabledBindings() const override;
437 bool GetContentStateImmediately() const override;
438 blink::WebPageVisibilityState GetVisibilityState() const override;
439 void DidStartLoading() override;
440 void DidStopLoading() override;
441 void Repaint(const gfx::Size& size) override;
442 void SetEditCommandForNextKeyEvent(const std::string& name,
443 const std::string& value) override;
444 void ClearEditCommands() override;
445 SSLStatus GetSSLStatusOfFrame(blink::WebFrame* frame) const override;
446 const std::string& GetAcceptLanguages() const override;
447 #if defined(OS_ANDROID)
448 void UpdateTopControlsState(TopControlsState constraints,
449 TopControlsState current,
450 bool animate) override;
451 #endif
452 bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; }
454 // Please do not add your stuff randomly to the end here. If there is an
455 // appropriate section, add it there. If not, there are some random functions
456 // nearer to the top you can add it to.
458 protected:
459 // RenderWidget overrides:
460 void OnClose() override;
461 void Close() override;
462 void OnResize(const ViewMsg_Resize_Params& params) override;
463 void DidInitiatePaint() override;
464 void DidFlushPaint() override;
465 gfx::Vector2d GetScrollOffset() override;
466 void DidHandleKeyEvent() override;
467 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override;
468 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override;
469 void DidHandleMouseEvent(const blink::WebMouseEvent& event) override;
470 void DidHandleTouchEvent(const blink::WebTouchEvent& event) override;
471 bool HasTouchEventHandlersAt(const gfx::Point& point) const override;
472 void OnSetFocus(bool enable) override;
473 void OnWasHidden() override;
474 void OnWasShown(bool needs_repainting,
475 const ui::LatencyInfo& latency_info) override;
476 GURL GetURLForGraphicsContext3D() override;
477 void OnImeSetComposition(
478 const base::string16& text,
479 const std::vector<blink::WebCompositionUnderline>& underlines,
480 int selection_start,
481 int selection_end) override;
482 void OnImeConfirmComposition(const base::string16& text,
483 const gfx::Range& replacement_range,
484 bool keep_selection) override;
485 void SetDeviceScaleFactor(float device_scale_factor) override;
486 bool SetDeviceColorProfile(const std::vector<char>& color_profile) override;
487 void OnOrientationChange() override;
488 ui::TextInputType GetTextInputType() override;
489 void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override;
490 void FocusChangeComplete() override;
491 void GetCompositionCharacterBounds(
492 std::vector<gfx::Rect>* character_bounds) override;
493 void GetCompositionRange(gfx::Range* range) override;
494 bool CanComposeInline() override;
495 void DidCommitCompositorFrame() override;
496 void DidCompletePageScaleAnimation() override;
498 protected:
499 explicit RenderViewImpl(const ViewMsg_New_Params& params);
501 void Initialize(const ViewMsg_New_Params& params,
502 CompositorDependencies* compositor_deps,
503 bool was_created_by_renderer);
504 void SetScreenMetricsEmulationParameters(
505 bool enabled,
506 const blink::WebDeviceEmulationParams& params) override;
508 // Do not delete directly. This class is reference counted.
509 virtual ~RenderViewImpl();
511 private:
512 // For unit tests.
513 friend class DevToolsAgentTest;
514 friend class PepperDeviceTest;
515 friend class RenderViewImplTest;
516 friend class RenderViewTest;
517 friend class RendererAccessibilityTest;
519 // TODO(nasko): Temporarily friend RenderFrameImpl, so we don't duplicate
520 // utility functions needed in both classes, while we move frame specific
521 // code away from this class.
522 friend class RenderFrameImpl;
524 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, RenderFrameMessageAfterDetach);
525 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI);
526 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
527 DidFailProvisionalLoadWithErrorForError);
528 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
529 DidFailProvisionalLoadWithErrorForCancellation);
530 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition);
531 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters);
532 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, JSBlockSentAfterPageLoad);
533 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, LastCommittedUpdateState);
534 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnHandleKeyboardEvent);
535 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnImeTypeChanged);
536 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavStateChanged);
537 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetTextDirection);
538 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences);
539 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
540 SetEditableSelectionAndComposition);
541 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored);
542 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
543 DontIgnoreBackAfterNavEntryLimit);
544 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL);
545 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
546 GetCompositionCharacterBoundsTest);
547 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost);
548 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ScreenMetricsEmulation);
549 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
550 DecideNavigationPolicyHandlesAllTopLevel);
551 #if defined(OS_MACOSX)
552 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp);
553 #endif
554 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndOffset);
555 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit);
556 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame);
557 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame);
558 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper);
559 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
560 MessageOrderInDidChangeSelection);
561 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendCandidateWindowEvents);
562 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses);
563 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress);
565 typedef std::map<GURL, double> HostZoomLevels;
567 enum ErrorPageType {
568 DNS_ERROR,
569 HTTP_404,
570 CONNECTION_ERROR,
573 // Old WebFrameClient implementations ----------------------------------------
575 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the
576 // WebFrameClient. However, many implementations of WebFrameClient methods
577 // still live here and are called from RenderFrameImpl. These implementations
578 // are to be moved to RenderFrameImpl <http://crbug.com/361761>.
580 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type);
581 void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame);
582 void didChangeScrollOffset(blink::WebLocalFrame* frame);
584 static Referrer GetReferrerFromRequest(
585 blink::WebFrame* frame,
586 const blink::WebURLRequest& request);
588 static WindowOpenDisposition NavigationPolicyToDisposition(
589 blink::WebNavigationPolicy policy);
591 void UpdateSessionHistory(blink::WebFrame* frame);
592 void SendUpdateState(HistoryEntry* entry);
594 // Sends a message and runs a nested message loop.
595 bool SendAndRunNestedMessageLoop(IPC::SyncMessage* message);
597 // IPC message handlers ------------------------------------------------------
599 // The documentation for these functions should be in
600 // content/common/*_messages.h for the message that the function is handling.
601 void OnExecuteEditCommand(const std::string& name, const std::string& value);
602 void OnMoveCaret(const gfx::Point& point);
603 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect);
604 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
605 void OnAllowBindings(int enabled_bindings_flags);
606 void OnAllowScriptToClose(bool script_can_close);
607 void OnCancelDownload(int32 download_id);
608 void OnClearFocusedElement();
609 void OnClosePage();
610 void OnShowContextMenu(ui::MenuSourceType source_type,
611 const gfx::Point& location);
612 void OnCopyImageAt(int x, int y);
613 void OnSaveImageAt(int x, int y);
614 void OnDeterminePageLanguage();
615 void OnDisableScrollbarsForSmallWindows(
616 const gfx::Size& disable_scrollbars_size_limit);
617 void OnDragSourceEnded(const gfx::Point& client_point,
618 const gfx::Point& screen_point,
619 blink::WebDragOperation drag_operation);
620 void OnDragSourceSystemDragEnded();
621 void OnDragTargetDrop(const gfx::Point& client_pt,
622 const gfx::Point& screen_pt,
623 int key_modifiers);
624 void OnDragTargetDragEnter(const DropData& drop_data,
625 const gfx::Point& client_pt,
626 const gfx::Point& screen_pt,
627 blink::WebDragOperationsMask operations_allowed,
628 int key_modifiers);
629 void OnDragTargetDragLeave();
630 void OnDragTargetDragOver(const gfx::Point& client_pt,
631 const gfx::Point& screen_pt,
632 blink::WebDragOperationsMask operations_allowed,
633 int key_modifiers);
634 void OnEnablePreferredSizeChangedMode();
635 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size);
636 void OnDisableAutoResize(const gfx::Size& new_size);
637 void OnEnumerateDirectoryResponse(int id,
638 const std::vector<base::FilePath>& paths);
639 void OnFileChooserResponse(
640 const std::vector<content::FileChooserFileInfo>& files);
641 void OnFind(int request_id,
642 const base::string16&,
643 const blink::WebFindOptions&);
644 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url);
645 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks(
646 const std::vector<GURL>& links,
647 const std::vector<base::FilePath>& local_paths,
648 const base::FilePath& local_directory_name);
649 void OnMediaPlayerActionAt(const gfx::Point& location,
650 const blink::WebMediaPlayerAction& action);
651 void OnPluginActionAt(const gfx::Point& location,
652 const blink::WebPluginAction& action);
653 void OnMoveOrResizeStarted();
654 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id);
655 void OnResetPageEncodingToDefault();
656 void OnSetActive(bool active);
657 void OnSetBackgroundOpaque(bool opaque);
658 void OnExitFullscreen();
659 void OnSetHistoryOffsetAndLength(int history_offset, int history_length);
660 void OnSetInitialFocus(bool reverse);
661 void OnSetPageEncoding(const std::string& encoding_name);
662 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
663 void OnSetWebUIProperty(const std::string& name, const std::string& value);
664 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
665 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level);
666 void OnStopFinding(StopFindAction action);
667 void OnSuppressDialogsUntilSwapOut();
668 void OnThemeChanged();
669 void OnUpdateTargetURLAck();
670 void OnUpdateWebPreferences(const WebPreferences& prefs);
671 void OnResetPageScale();
672 void OnZoom(PageZoom zoom);
673 void OnEnableViewSourceMode();
674 void OnForceRedraw(int request_id);
675 void OnSelectWordAroundCaret();
676 #if defined(OS_ANDROID)
677 void OnActivateNearestFindResult(int request_id, float x, float y);
678 void OnFindMatchRects(int current_version);
679 void OnUndoScrollFocusedEditableNodeIntoRect();
680 void OnUpdateTopControlsState(bool enable_hiding,
681 bool enable_showing,
682 bool animate);
683 void OnExtractSmartClipData(const gfx::Rect& rect);
684 #elif defined(OS_MACOSX)
685 void OnGetRenderedText();
686 void OnPluginImeCompositionCompleted(const base::string16& text,
687 int plugin_id);
688 void OnSetInLiveResize(bool in_live_resize);
689 void OnSetWindowVisibility(bool visible);
690 void OnWindowFrameChanged(const gfx::Rect& window_frame,
691 const gfx::Rect& view_frame);
692 #endif
694 // Adding a new message handler? Please add it in alphabetical order above
695 // and put it in the same position in the .cc file.
697 // Misc private functions ----------------------------------------------------
698 // Check whether the preferred size has changed.
699 void CheckPreferredSize();
701 // Gets the currently focused element, if any.
702 blink::WebElement GetFocusedElement() const;
704 // Called to get the WebPlugin to handle find requests in the document.
705 // Returns NULL if there is no such WebPlugin.
706 blink::WebPlugin* GetWebPluginForFind();
708 #if defined(OS_ANDROID)
709 // Launch an Android content intent with the given URL.
710 void LaunchAndroidContentIntent(const GURL& intent_url, size_t request_id);
711 #endif
713 // Sends a reply to the current find operation handling if it was a
714 // synchronous find request.
715 void SendFindReply(int request_id,
716 int match_count,
717 int ordinal,
718 const blink::WebRect& selection_rect,
719 bool final_status_update);
721 // Starts nav_state_sync_timer_ if it isn't already running.
722 void StartNavStateSyncTimerIfNecessary();
724 #if defined(OS_WIN) || (defined(OS_POSIX) && !defined(OS_MACOSX))
725 void UpdateFontRenderingFromRendererPrefs();
726 #else
727 void UpdateFontRenderingFromRendererPrefs() {}
728 #endif
730 // Update the target url and tell the browser that the target URL has changed.
731 // If |url| is empty, show |fallback_url|.
732 void UpdateTargetURL(const GURL& url, const GURL& fallback_url);
734 // Tells the browser what the new list of favicons for the webpage is.
735 void SendUpdateFaviconURL(const std::vector<FaviconURL>& urls);
737 // Invoked from DidStopLoading(). Sends the current list of loaded favicons to
738 // the browser.
739 void DidStopLoadingIcons();
741 // Coordinate conversion -----------------------------------------------------
743 gfx::RectF ClientRectToPhysicalWindowRect(const gfx::RectF& rect) const;
745 // RenderFrameImpl accessible state ------------------------------------------
746 // The following section is the set of methods that RenderFrameImpl needs
747 // to access RenderViewImpl state. The set of state variables are page-level
748 // specific, so they don't belong in RenderFrameImpl and should remain in
749 // this object.
750 ObserverList<RenderViewObserver>& observers() {
751 return observers_;
754 // TODO(nasko): Remove this method when we move to frame proxy objects, since
755 // the concept of swapped out will be eliminated.
756 void set_is_swapped_out(bool swapped_out) {
757 is_swapped_out_ = swapped_out;
760 NavigationGesture navigation_gesture() {
761 return navigation_gesture_;
763 void set_navigation_gesture(NavigationGesture gesture) {
764 navigation_gesture_ = gesture;
767 // Platform specific theme preferences if any are updated here.
768 #if defined(OS_WIN)
769 void UpdateThemePrefs();
770 #else
771 void UpdateThemePrefs() {}
772 #endif
774 // ---------------------------------------------------------------------------
775 // ADDING NEW FUNCTIONS? Please keep private functions alphabetized and put
776 // it in the same order in the .cc file as it was in the header.
777 // ---------------------------------------------------------------------------
779 // Settings ------------------------------------------------------------------
781 WebPreferences webkit_preferences_;
782 RendererPreferences renderer_preferences_;
784 HostZoomLevels host_zoom_levels_;
786 // Whether content state (such as form state, scroll position and page
787 // contents) should be sent to the browser immediately. This is normally
788 // false, but set to true by some tests.
789 bool send_content_state_immediately_;
791 // Bitwise-ORed set of extra bindings that have been enabled. See
792 // BindingsPolicy for details.
793 int enabled_bindings_;
795 // If true, we send IPC messages when |preferred_size_| changes.
796 bool send_preferred_size_changes_;
798 // If non-empty, and |send_preferred_size_changes_| is true, disable drawing
799 // scroll bars on windows smaller than this size. Used for windows that the
800 // browser resizes to the size of the content, such as browser action popups.
801 // If a render view is set to the minimum size of its content, webkit may add
802 // scroll bars. This makes sense for fixed sized windows, but it does not
803 // make sense when the size of the view was chosen to fit the content.
804 // This setting ensures that no scroll bars are drawn. The size limit exists
805 // because if the view grows beyond a size known to the browser, scroll bars
806 // should be drawn.
807 gfx::Size disable_scrollbars_size_limit_;
809 // Loading state -------------------------------------------------------------
811 // The gesture that initiated the current navigation.
812 // TODO(nasko): Move to RenderFrame, as this is per-frame state.
813 NavigationGesture navigation_gesture_;
815 // Used for popups.
816 bool opened_by_user_gesture_;
818 // Whether this RenderView was created by a frame that was suppressing its
819 // opener. If so, we may want to load pages in a separate process. See
820 // decidePolicyForNavigation for details.
821 bool opener_suppressed_;
823 // Whether we must stop creating nested message loops for modal dialogs until
824 // OnSwapOut is called. This is necessary because modal dialogs have a
825 // PageGroupLoadDeferrer on the stack that interferes with swapping out.
826 bool suppress_dialogs_until_swap_out_;
828 // Timer used to delay the updating of nav state (see SyncNavigationState).
829 base::OneShotTimer<RenderViewImpl> nav_state_sync_timer_;
831 // Page IDs ------------------------------------------------------------------
832 // See documentation in RenderView.
833 int32 page_id_;
835 // The next available page ID to use for this RenderView. These IDs are
836 // specific to a given RenderView and the frames within it.
837 int32 next_page_id_;
839 // The offset of the current item in the history list.
840 int history_list_offset_;
842 // The RenderView's current impression of the history length. This includes
843 // any items that have committed in this process, but because of cross-process
844 // navigations, the history may have some entries that were committed in other
845 // processes. We won't know about them until the next navigation in this
846 // process.
847 int history_list_length_;
849 // Counter to track how many frames have sent start notifications but not stop
850 // notifications. TODO(avi): Remove this once DidStartLoading/DidStopLoading
851 // are gone.
852 int frames_in_progress_;
854 // UI state ------------------------------------------------------------------
856 // The state of our target_url transmissions. When we receive a request to
857 // send a URL to the browser, we set this to TARGET_INFLIGHT until an ACK
858 // comes back - if a new request comes in before the ACK, we store the new
859 // URL in pending_target_url_ and set the status to TARGET_PENDING. If an
860 // ACK comes back and we are in TARGET_PENDING, we send the stored URL and
861 // revert to TARGET_INFLIGHT.
863 // We don't need a queue of URLs to send, as only the latest is useful.
864 enum {
865 TARGET_NONE,
866 TARGET_INFLIGHT, // We have a request in-flight, waiting for an ACK
867 TARGET_PENDING // INFLIGHT + we have a URL waiting to be sent
868 } target_url_status_;
870 // The URL we show the user in the status bar. We use this to determine if we
871 // want to send a new one (we do not need to send duplicates). It will be
872 // equal to either |mouse_over_url_| or |focus_url_|, depending on which was
873 // updated last.
874 GURL target_url_;
876 // The URL the user's mouse is hovering over.
877 GURL mouse_over_url_;
879 // The URL that has keyboard focus.
880 GURL focus_url_;
882 // The next target URL we want to send to the browser.
883 GURL pending_target_url_;
885 // Indicates whether this view overrides url-based zoom settings.
886 bool uses_temporary_zoom_level_;
888 #if defined(OS_ANDROID)
889 // Cache the old top controls state constraints. Used when updating
890 // current value only without altering the constraints.
891 TopControlsState top_controls_constraints_;
892 #endif
894 // View ----------------------------------------------------------------------
896 // Cache the preferred size of the page in order to prevent sending the IPC
897 // when layout() recomputes but doesn't actually change sizes.
898 gfx::Size preferred_size_;
900 // Used to delay determining the preferred size (to avoid intermediate
901 // states for the sizes).
902 base::OneShotTimer<RenderViewImpl> check_preferred_size_timer_;
904 // Bookkeeping to suppress redundant scroll and focus requests for an already
905 // scrolled and focused editable node.
906 bool has_scrolled_focused_editable_node_into_rect_;
907 gfx::Rect rect_for_scrolled_focused_editable_node_;
909 // Helper objects ------------------------------------------------------------
911 scoped_ptr<RenderFrameImpl> main_render_frame_;
913 // The next group of objects all implement RenderViewObserver, so are deleted
914 // along with the RenderView automatically. This is why we just store
915 // weak references.
917 // The speech recognition dispatcher attached to this view, lazily
918 // initialized.
919 SpeechRecognitionDispatcher* speech_recognition_dispatcher_;
921 // Mouse Lock dispatcher attached to this view.
922 MouseLockDispatcher* mouse_lock_dispatcher_;
924 scoped_ptr<HistoryController> history_controller_;
926 #if defined(OS_ANDROID)
927 // Android Specific ---------------------------------------------------------
929 // Expected id of the next content intent launched. Used to prevent scheduled
930 // intents to be launched if aborted.
931 size_t expected_content_intent_id_;
933 // List of click-based content detectors.
934 typedef std::vector< linked_ptr<ContentDetector> > ContentDetectorList;
935 ContentDetectorList content_detectors_;
937 // A date/time picker object for date and time related input elements.
938 scoped_ptr<RendererDateTimePicker> date_time_picker_client_;
939 #endif
941 // Plugins -------------------------------------------------------------------
943 // All the currently active plugin delegates for this RenderView; kept so
944 // that we can enumerate them to send updates about things like window
945 // location or tab focus and visibily. These are non-owning references.
946 std::set<WebPluginDelegateProxy*> plugin_delegates_;
948 #if defined(OS_WIN)
949 // The ID of the focused NPAPI plugin.
950 int focused_plugin_id_;
951 #endif
953 #if defined(ENABLE_PLUGINS)
954 PepperPluginInstanceImpl* plugin_find_handler_;
956 typedef std::set<PepperPluginInstanceImpl*> PepperPluginSet;
957 PepperPluginSet active_pepper_instances_;
959 // TODO(jam): these belong on RenderFrame, once the browser knows which frame
960 // is focused and sends the IPCs which use these to the correct frame. Until
961 // then, we must store these on RenderView as that's the one place that knows
962 // about all the RenderFrames for a page.
964 // Whether or not the focus is on a PPAPI plugin
965 PepperPluginInstanceImpl* focused_pepper_plugin_;
967 // The plugin instance that received the last mouse event. It is set to NULL
968 // if the last mouse event went to elements other than Pepper plugins.
969 // |pepper_last_mouse_event_target_| is not owned by this class. We depend on
970 // the RenderFrameImpl to NULL it out when it destructs.
971 PepperPluginInstanceImpl* pepper_last_mouse_event_target_;
972 #endif
974 // Misc ----------------------------------------------------------------------
976 // The current and pending file chooser completion objects. If the queue is
977 // nonempty, the first item represents the currently running file chooser
978 // callback, and the remaining elements are the other file chooser completion
979 // still waiting to be run (in order).
980 struct PendingFileChooser;
981 std::deque< linked_ptr<PendingFileChooser> > file_chooser_completions_;
983 // The current directory enumeration callback
984 std::map<int, blink::WebFileChooserCompletion*> enumeration_completions_;
985 int enumeration_completion_id_;
987 // The SessionStorage namespace that we're assigned to has an ID, and that ID
988 // is passed to us upon creation. WebKit asks for this ID upon first use and
989 // uses it whenever asking the browser process to allocate new storage areas.
990 int64 session_storage_namespace_id_;
992 // Stores edit commands associated to the next key event.
993 // Shall be cleared as soon as the next key event is processed.
994 EditCommands edit_commands_;
996 // All the registered observers. We expect this list to be small, so vector
997 // is fine.
998 ObserverList<RenderViewObserver> observers_;
1000 // Wraps the |webwidget_| as a MouseLockDispatcher::LockTarget interface.
1001 scoped_ptr<MouseLockDispatcher::LockTarget> webwidget_mouse_lock_target_;
1003 // This field stores drag/drop related info for the event that is currently
1004 // being handled. If the current event results in starting a drag/drop
1005 // session, this info is sent to the browser along with other drag/drop info.
1006 DragEventSourceInfo possible_drag_event_info_;
1008 // NOTE: stats_collection_observer_ should be the last members because their
1009 // constructors call the AddObservers method of RenderViewImpl.
1010 scoped_ptr<StatsCollectionObserver> stats_collection_observer_;
1012 typedef std::map<cc::SharedBitmapId, cc::SharedBitmap*> BitmapMap;
1013 BitmapMap disambiguation_bitmaps_;
1015 bool page_scale_factor_is_one_;
1017 // ---------------------------------------------------------------------------
1018 // ADDING NEW DATA? Please see if it fits appropriately in one of the above
1019 // sections rather than throwing it randomly at the end. If you're adding a
1020 // bunch of stuff, you should probably create a helper class and put your
1021 // data and methods on that to avoid bloating RenderView more. You can
1022 // use the Observer interface to filter IPC messages and receive frame change
1023 // notifications.
1024 // ---------------------------------------------------------------------------
1026 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1029 } // namespace content
1031 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_