[ServiceWorker] Implement WebServiceWorkerContextClient::openWindow().
[chromium-blink-merge.git] / content / renderer / pepper / pepper_plugin_instance_impl.h
blob3a0a69aeb3089905e461922c7d7883ceb8712095
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_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
8 #include <list>
9 #include <set>
10 #include <string>
11 #include <vector>
13 #include "base/callback.h"
14 #include "base/compiler_specific.h"
15 #include "base/memory/ref_counted.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h"
18 #include "base/strings/string16.h"
19 #include "cc/layers/content_layer_client.h"
20 #include "cc/layers/layer.h"
21 #include "cc/layers/texture_layer_client.h"
22 #include "content/common/content_export.h"
23 #include "content/public/renderer/pepper_plugin_instance.h"
24 #include "content/public/renderer/plugin_instance_throttler.h"
25 #include "content/public/renderer/render_frame.h"
26 #include "content/public/renderer/render_frame_observer.h"
27 #include "content/renderer/mouse_lock_dispatcher.h"
28 #include "gin/handle.h"
29 #include "ppapi/c/dev/pp_cursor_type_dev.h"
30 #include "ppapi/c/dev/ppp_printing_dev.h"
31 #include "ppapi/c/dev/ppp_selection_dev.h"
32 #include "ppapi/c/dev/ppp_text_input_dev.h"
33 #include "ppapi/c/dev/ppp_zoom_dev.h"
34 #include "ppapi/c/pp_completion_callback.h"
35 #include "ppapi/c/pp_instance.h"
36 #include "ppapi/c/pp_time.h"
37 #include "ppapi/c/pp_var.h"
38 #include "ppapi/c/ppb_audio_config.h"
39 #include "ppapi/c/ppb_gamepad.h"
40 #include "ppapi/c/ppb_input_event.h"
41 #include "ppapi/c/ppp_graphics_3d.h"
42 #include "ppapi/c/ppp_input_event.h"
43 #include "ppapi/c/ppp_mouse_lock.h"
44 #include "ppapi/c/private/ppb_content_decryptor_private.h"
45 #include "ppapi/c/private/ppp_find_private.h"
46 #include "ppapi/c/private/ppp_instance_private.h"
47 #include "ppapi/c/private/ppp_pdf.h"
48 #include "ppapi/shared_impl/ppb_instance_shared.h"
49 #include "ppapi/shared_impl/ppb_view_shared.h"
50 #include "ppapi/shared_impl/singleton_resource_id.h"
51 #include "ppapi/shared_impl/tracked_callback.h"
52 #include "ppapi/thunk/ppb_gamepad_api.h"
53 #include "ppapi/thunk/resource_creation_api.h"
54 #include "skia/ext/refptr.h"
55 #include "third_party/WebKit/public/platform/WebCanvas.h"
56 #include "third_party/WebKit/public/platform/WebString.h"
57 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
58 #include "third_party/WebKit/public/platform/WebURLResponse.h"
59 #include "third_party/WebKit/public/web/WebPlugin.h"
60 #include "third_party/WebKit/public/web/WebUserGestureToken.h"
61 #include "ui/base/ime/text_input_type.h"
62 #include "ui/events/latency_info.h"
63 #include "ui/gfx/geometry/rect.h"
64 #include "url/gurl.h"
65 #include "v8/include/v8.h"
67 struct PP_Point;
68 struct _NPP;
70 class SkBitmap;
71 class TransportDIB;
73 namespace blink {
74 class WebInputEvent;
75 class WebLayer;
76 class WebMouseEvent;
77 class WebPluginContainer;
78 class WebURLLoader;
79 class WebURLResponse;
80 struct WebCompositionUnderline;
81 struct WebCursorInfo;
82 struct WebURLError;
83 struct WebPrintParams;
86 namespace cc {
87 class TextureLayer;
90 namespace gfx {
91 class Range;
94 namespace ppapi {
95 class Resource;
96 struct InputEventData;
97 struct PPP_Instance_Combined;
98 class ScopedPPVar;
101 namespace content {
103 class ContentDecryptorDelegate;
104 class FullscreenContainer;
105 class MessageChannel;
106 class PepperCompositorHost;
107 class PepperGraphics2DHost;
108 class PluginInstanceThrottlerImpl;
109 class PluginModule;
110 class PluginObject;
111 class PPB_Graphics3D_Impl;
112 class PPB_ImageData_Impl;
113 class PPB_URLLoader_Impl;
114 class RenderFrameImpl;
115 class RenderViewImpl;
117 // Represents one time a plugin appears on one web page.
119 // Note: to get from a PP_Instance to a PepperPluginInstance*, use the
120 // ResourceTracker.
121 class CONTENT_EXPORT PepperPluginInstanceImpl
122 : public base::RefCounted<PepperPluginInstanceImpl>,
123 public NON_EXPORTED_BASE(PepperPluginInstance),
124 public ppapi::PPB_Instance_Shared,
125 public NON_EXPORTED_BASE(cc::TextureLayerClient),
126 public RenderFrameObserver,
127 public NON_EXPORTED_BASE(PluginInstanceThrottler::Observer) {
128 public:
129 // Create and return a PepperPluginInstanceImpl object which supports the most
130 // recent version of PPP_Instance possible by querying the given
131 // get_plugin_interface function. If the plugin does not support any valid
132 // PPP_Instance interface, returns NULL.
133 static PepperPluginInstanceImpl* Create(RenderFrameImpl* render_frame,
134 PluginModule* module,
135 blink::WebPluginContainer* container,
136 const GURL& plugin_url);
137 RenderFrameImpl* render_frame() const { return render_frame_; }
138 PluginModule* module() const { return module_.get(); }
140 blink::WebPluginContainer* container() const { return container_; }
142 PluginInstanceThrottlerImpl* throttler() const { return throttler_.get(); }
144 // Returns the PP_Instance uniquely identifying this instance. Guaranteed
145 // nonzero.
146 PP_Instance pp_instance() const { return pp_instance_; }
148 ppapi::thunk::ResourceCreationAPI& resource_creation() {
149 return *resource_creation_.get();
152 MessageChannel* message_channel() { return message_channel_; }
153 v8::Local<v8::Object> GetMessageChannelObject();
154 // Called when |message_channel_| is destroyed as it may be destroyed prior to
155 // the plugin being destroyed.
156 void MessageChannelDestroyed();
158 // Return the v8 context for the frame that the plugin is contained in. Care
159 // should be taken to use the correct context for plugin<->JS interactions.
160 // In cases where JS calls into the plugin, the caller's context should
161 // typically be used. When calling from the plugin into JS, this context
162 // should typically used.
163 v8::Local<v8::Context> GetMainWorldContext();
165 // Does some pre-destructor cleanup on the instance. This is necessary
166 // because some cleanup depends on the plugin instance still existing (like
167 // calling the plugin's DidDestroy function). This function is called from
168 // the WebPlugin implementation when WebKit is about to remove the plugin.
169 void Delete();
171 // Returns true if Delete() has been called on this object.
172 bool is_deleted() const;
174 // Paints the current backing store to the web page.
175 void Paint(blink::WebCanvas* canvas,
176 const gfx::Rect& plugin_rect,
177 const gfx::Rect& paint_rect);
179 // Schedules a paint of the page for the given region. The coordinates are
180 // relative to the top-left of the plugin. This does nothing if the plugin
181 // has not yet been positioned. You can supply an empty gfx::Rect() to
182 // invalidate the entire plugin.
183 void InvalidateRect(const gfx::Rect& rect);
185 // Schedules a scroll of the plugin. This uses optimized scrolling only for
186 // full-frame plugins, as otherwise there could be other elements on top. The
187 // slow path can also be triggered if there is an overlapping frame.
188 void ScrollRect(int dx, int dy, const gfx::Rect& rect);
190 // Commit the backing texture to the screen once the side effects some
191 // rendering up to an offscreen SwapBuffers are visible.
192 void CommitBackingTexture();
194 // Called when the out-of-process plugin implementing this instance crashed.
195 void InstanceCrashed();
197 // PPB_Instance and PPB_Instance_Private implementation.
198 bool full_frame() const { return full_frame_; }
199 const ppapi::ViewData& view_data() const { return view_data_; }
201 // PPP_Instance and PPP_Instance_Private.
202 bool Initialize(const std::vector<std::string>& arg_names,
203 const std::vector<std::string>& arg_values,
204 bool full_frame,
205 scoped_ptr<PluginInstanceThrottlerImpl> throttler);
206 bool HandleDocumentLoad(const blink::WebURLResponse& response);
207 bool HandleInputEvent(const blink::WebInputEvent& event,
208 blink::WebCursorInfo* cursor_info);
209 PP_Var GetInstanceObject(v8::Isolate* isolate);
210 void ViewChanged(const gfx::Rect& position,
211 const gfx::Rect& clip,
212 const std::vector<gfx::Rect>& cut_outs_rects);
214 // Handlers for composition events.
215 bool HandleCompositionStart(const base::string16& text);
216 bool HandleCompositionUpdate(
217 const base::string16& text,
218 const std::vector<blink::WebCompositionUnderline>& underlines,
219 int selection_start,
220 int selection_end);
221 bool HandleCompositionEnd(const base::string16& text);
222 bool HandleTextInput(const base::string16& text);
224 // Gets the current text input status.
225 ui::TextInputType text_input_type() const { return text_input_type_; }
226 gfx::Rect GetCaretBounds() const;
227 bool IsPluginAcceptingCompositionEvents() const;
228 void GetSurroundingText(base::string16* text, gfx::Range* range) const;
230 // Notifications about focus changes, see has_webkit_focus_ below.
231 void SetWebKitFocus(bool has_focus);
232 void SetContentAreaFocus(bool has_focus);
234 // Notification about page visibility. The default is "visible".
235 void PageVisibilityChanged(bool is_visible);
237 // Notifications that the view has started painting. This message is used to
238 // send Flush callbacks to the plugin for Graphics2D/3D.
239 void ViewInitiatedPaint();
241 // Tracks all live PluginObjects.
242 void AddPluginObject(PluginObject* plugin_object);
243 void RemovePluginObject(PluginObject* plugin_object);
245 base::string16 GetSelectedText(bool html);
246 base::string16 GetLinkAtPosition(const gfx::Point& point);
247 void RequestSurroundingText(size_t desired_number_of_characters);
248 void Zoom(double factor, bool text_only);
249 bool StartFind(const base::string16& search_text,
250 bool case_sensitive,
251 int identifier);
252 void SelectFindResult(bool forward);
253 void StopFind();
255 bool SupportsPrintInterface();
256 bool IsPrintScalingDisabled();
257 int PrintBegin(const blink::WebPrintParams& print_params);
258 bool PrintPage(int page_number, blink::WebCanvas* canvas);
259 void PrintEnd();
260 bool GetPrintPresetOptionsFromDocument(
261 blink::WebPrintPresetOptions* preset_options);
263 bool CanRotateView();
264 void RotateView(blink::WebPlugin::RotationType type);
266 // There are 2 implementations of the fullscreen interface
267 // PPB_FlashFullscreen is used by Pepper Flash.
268 // PPB_Fullscreen is intended for other applications including NaCl.
269 // The two interface are mutually exclusive.
271 // Implementation of PPB_FlashFullscreen.
273 // Because going to fullscreen is asynchronous (but going out is not), there
274 // are 3 states:
275 // - normal : fullscreen_container_ == NULL
276 // flash_fullscreen_ == false
277 // - fullscreen pending: fullscreen_container_ != NULL
278 // flash_fullscreen_ == false
279 // - fullscreen : fullscreen_container_ != NULL
280 // flash_fullscreen_ == true
282 // In normal state, events come from webkit and painting goes back to it.
283 // In fullscreen state, events come from the fullscreen container, and
284 // painting goes back to it.
285 // In pending state, events from webkit are ignored, and as soon as we
286 // receive events from the fullscreen container, we go to the fullscreen
287 // state.
288 bool FlashIsFullscreenOrPending();
290 // Updates |flash_fullscreen_| and sends focus change notification if
291 // necessary.
292 void UpdateFlashFullscreenState(bool flash_fullscreen);
294 FullscreenContainer* fullscreen_container() const {
295 return fullscreen_container_;
298 // Implementation of PPB_Fullscreen.
300 // Because going to/from fullscreen is asynchronous, there are 4 states:
301 // - normal : desired_fullscreen_state_ == false
302 // view_data_.is_fullscreen == false
303 // - fullscreen pending: desired_fullscreen_state_ == true
304 // view_data_.is_fullscreen == false
305 // - fullscreen : desired_fullscreen_state_ == true
306 // view_data_.is_fullscreen == true
307 // - normal pending : desired_fullscreen_state_ = false
308 // view_data_.is_fullscreen = true
309 bool IsFullscreenOrPending();
311 bool flash_fullscreen() const { return flash_fullscreen_; }
313 // Switches between fullscreen and normal mode. The transition is
314 // asynchronous. WebKit will trigger corresponding VewChanged calls.
315 // Returns true on success, false on failure (e.g. trying to enter fullscreen
316 // when not processing a user gesture or trying to set fullscreen when
317 // already in fullscreen mode).
318 bool SetFullscreen(bool fullscreen);
320 // Send the message on to the plugin.
321 void HandleMessage(ppapi::ScopedPPVar message);
323 // Send the message synchronously to the plugin, and get a result. Returns
324 // true if the plugin handled the message, false if it didn't. The plugin
325 // won't handle the message if it has not registered a PPP_MessageHandler.
326 bool HandleBlockingMessage(ppapi::ScopedPPVar message,
327 ppapi::ScopedPPVar* result);
329 // Returns true if the plugin is processing a user gesture.
330 bool IsProcessingUserGesture();
332 // Returns the user gesture token to use for creating a WebScopedUserGesture,
333 // if IsProcessingUserGesture returned true.
334 blink::WebUserGestureToken CurrentUserGestureToken();
336 // A mouse lock request was pending and this reports success or failure.
337 void OnLockMouseACK(bool succeeded);
338 // A mouse lock was in place, but has been lost.
339 void OnMouseLockLost();
340 // A mouse lock is enabled and mouse events are being delivered.
341 void HandleMouseLockedInputEvent(const blink::WebMouseEvent& event);
343 // Simulates an input event to the plugin by passing it down to WebKit,
344 // which sends it back up to the plugin as if it came from the user.
345 void SimulateInputEvent(const ppapi::InputEventData& input_event);
347 // Simulates an IME event at the level of RenderView which sends it back up to
348 // the plugin as if it came from the user.
349 bool SimulateIMEEvent(const ppapi::InputEventData& input_event);
350 void SimulateImeSetCompositionEvent(const ppapi::InputEventData& input_event);
352 // The document loader is valid when the plugin is "full-frame" and in this
353 // case is non-NULL as long as the corresponding loader resource is alive.
354 // This pointer is non-owning, so the loader must use set_document_loader to
355 // clear itself when it is destroyed.
356 blink::WebURLLoaderClient* document_loader() const {
357 return document_loader_;
359 void set_document_loader(blink::WebURLLoaderClient* loader) {
360 document_loader_ = loader;
363 ContentDecryptorDelegate* GetContentDecryptorDelegate();
365 // PluginInstance implementation
366 RenderView* GetRenderView() override;
367 blink::WebPluginContainer* GetContainer() override;
368 v8::Isolate* GetIsolate() const override;
369 ppapi::VarTracker* GetVarTracker() override;
370 const GURL& GetPluginURL() override;
371 base::FilePath GetModulePath() override;
372 PP_Resource CreateImage(gfx::ImageSkia* source_image, float scale) override;
373 PP_ExternalPluginResult SwitchToOutOfProcessProxy(
374 const base::FilePath& file_path,
375 ppapi::PpapiPermissions permissions,
376 const IPC::ChannelHandle& channel_handle,
377 base::ProcessId plugin_pid,
378 int plugin_child_id) override;
379 void SetAlwaysOnTop(bool on_top) override;
380 bool IsFullPagePlugin() override;
381 bool FlashSetFullscreen(bool fullscreen, bool delay_report) override;
382 bool IsRectTopmost(const gfx::Rect& rect) override;
383 int32_t Navigate(const ppapi::URLRequestInfoData& request,
384 const char* target,
385 bool from_user_action) override;
386 int MakePendingFileRefRendererHost(const base::FilePath& path) override;
387 void SetEmbedProperty(PP_Var key, PP_Var value) override;
388 void SetSelectedText(const base::string16& selected_text) override;
389 void SetLinkUnderCursor(const std::string& url) override;
390 void SetTextInputType(ui::TextInputType type) override;
391 void PostMessageToJavaScript(PP_Var message) override;
393 // PPB_Instance_API implementation.
394 PP_Bool BindGraphics(PP_Instance instance, PP_Resource device) override;
395 PP_Bool IsFullFrame(PP_Instance instance) override;
396 const ppapi::ViewData* GetViewData(PP_Instance instance) override;
397 PP_Bool FlashIsFullscreen(PP_Instance instance) override;
398 PP_Var GetWindowObject(PP_Instance instance) override;
399 PP_Var GetOwnerElementObject(PP_Instance instance) override;
400 PP_Var ExecuteScript(PP_Instance instance,
401 PP_Var script,
402 PP_Var* exception) override;
403 uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) override;
404 uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) override;
405 PP_Var GetDefaultCharSet(PP_Instance instance) override;
406 void SetPluginToHandleFindRequests(PP_Instance) override;
407 void NumberOfFindResultsChanged(PP_Instance instance,
408 int32_t total,
409 PP_Bool final_result) override;
410 void SelectedFindResultChanged(PP_Instance instance, int32_t index) override;
411 void SetTickmarks(PP_Instance instance,
412 const PP_Rect* tickmarks,
413 uint32_t count) override;
414 PP_Bool IsFullscreen(PP_Instance instance) override;
415 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) override;
416 PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) override;
417 ppapi::Resource* GetSingletonResource(PP_Instance instance,
418 ppapi::SingletonResourceID id) override;
419 int32_t RequestInputEvents(PP_Instance instance,
420 uint32_t event_classes) override;
421 int32_t RequestFilteringInputEvents(PP_Instance instance,
422 uint32_t event_classes) override;
423 void ClearInputEventRequest(PP_Instance instance,
424 uint32_t event_classes) override;
425 void StartTrackingLatency(PP_Instance instance) override;
426 void ZoomChanged(PP_Instance instance, double factor) override;
427 void ZoomLimitsChanged(PP_Instance instance,
428 double minimum_factor,
429 double maximum_factor) override;
430 void PostMessage(PP_Instance instance, PP_Var message) override;
431 int32_t RegisterMessageHandler(PP_Instance instance,
432 void* user_data,
433 const PPP_MessageHandler_0_2* handler,
434 PP_Resource message_loop) override;
435 int32_t RegisterMessageHandler_1_1_Deprecated(
436 PP_Instance instance,
437 void* user_data,
438 const PPP_MessageHandler_0_1_Deprecated* handler,
439 PP_Resource message_loop) override;
440 void UnregisterMessageHandler(PP_Instance instance) override;
441 PP_Bool SetCursor(PP_Instance instance,
442 PP_MouseCursor_Type type,
443 PP_Resource image,
444 const PP_Point* hot_spot) override;
445 int32_t LockMouse(PP_Instance instance,
446 scoped_refptr<ppapi::TrackedCallback> callback) override;
447 void UnlockMouse(PP_Instance instance) override;
448 void SetTextInputType(PP_Instance instance, PP_TextInput_Type type) override;
449 void UpdateCaretPosition(PP_Instance instance,
450 const PP_Rect& caret,
451 const PP_Rect& bounding_box) override;
452 void CancelCompositionText(PP_Instance instance) override;
453 void SelectionChanged(PP_Instance instance) override;
454 void UpdateSurroundingText(PP_Instance instance,
455 const char* text,
456 uint32_t caret,
457 uint32_t anchor) override;
458 PP_Var ResolveRelativeToDocument(PP_Instance instance,
459 PP_Var relative,
460 PP_URLComponents_Dev* components) override;
461 PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) override;
462 PP_Bool DocumentCanAccessDocument(PP_Instance instance,
463 PP_Instance target) override;
464 PP_Var GetDocumentURL(PP_Instance instance,
465 PP_URLComponents_Dev* components) override;
466 PP_Var GetPluginInstanceURL(PP_Instance instance,
467 PP_URLComponents_Dev* components) override;
468 PP_Var GetPluginReferrerURL(PP_Instance instance,
469 PP_URLComponents_Dev* components) override;
471 // PPB_ContentDecryptor_Private implementation.
472 void PromiseResolved(PP_Instance instance, uint32 promise_id) override;
473 void PromiseResolvedWithSession(PP_Instance instance,
474 uint32 promise_id,
475 PP_Var session_id_var) override;
476 void PromiseRejected(PP_Instance instance,
477 uint32 promise_id,
478 PP_CdmExceptionCode exception_code,
479 uint32 system_code,
480 PP_Var error_description_var) override;
481 void SessionMessage(PP_Instance instance,
482 PP_Var session_id_var,
483 PP_CdmMessageType message_type,
484 PP_Var message_var,
485 PP_Var legacy_destination_url) override;
486 void SessionKeysChange(
487 PP_Instance instance,
488 PP_Var session_id_var,
489 PP_Bool has_additional_usable_key,
490 uint32_t key_count,
491 const struct PP_KeyInformation key_information[]) override;
492 void SessionExpirationChange(PP_Instance instance,
493 PP_Var session_id_var,
494 PP_Time new_expiry_time) override;
495 void SessionClosed(PP_Instance instance, PP_Var session_id_var) override;
496 void SessionError(PP_Instance instance,
497 PP_Var session_id_var,
498 PP_CdmExceptionCode exception_code,
499 uint32 system_code,
500 PP_Var error_description_var) override;
501 void DeliverBlock(PP_Instance instance,
502 PP_Resource decrypted_block,
503 const PP_DecryptedBlockInfo* block_info) override;
504 void DecoderInitializeDone(PP_Instance instance,
505 PP_DecryptorStreamType decoder_type,
506 uint32_t request_id,
507 PP_Bool success) override;
508 void DecoderDeinitializeDone(PP_Instance instance,
509 PP_DecryptorStreamType decoder_type,
510 uint32_t request_id) override;
511 void DecoderResetDone(PP_Instance instance,
512 PP_DecryptorStreamType decoder_type,
513 uint32_t request_id) override;
514 void DeliverFrame(PP_Instance instance,
515 PP_Resource decrypted_frame,
516 const PP_DecryptedFrameInfo* frame_info) override;
517 void DeliverSamples(PP_Instance instance,
518 PP_Resource audio_frames,
519 const PP_DecryptedSampleInfo* sample_info) override;
521 // Reset this instance as proxied. Assigns the instance a new module, resets
522 // cached interfaces to point to the out-of-process proxy and re-sends
523 // DidCreate, DidChangeView, and HandleDocumentLoad (if necessary).
524 // This should be used only when switching an in-process instance to an
525 // external out-of-process instance.
526 PP_ExternalPluginResult ResetAsProxied(scoped_refptr<PluginModule> module);
528 // Checks whether this is a valid instance of the given module. After calling
529 // ResetAsProxied above, a NaCl plugin instance's module changes, so external
530 // hosts won't recognize it as a valid instance of the original module. This
531 // method fixes that be checking that either module_ or original_module_ match
532 // the given module.
533 bool IsValidInstanceOf(PluginModule* module);
535 // cc::TextureLayerClient implementation.
536 bool PrepareTextureMailbox(
537 cc::TextureMailbox* mailbox,
538 scoped_ptr<cc::SingleReleaseCallback>* release_callback,
539 bool use_shared_memory) override;
541 // RenderFrameObserver
542 void OnDestruct() override;
544 // PluginInstanceThrottler::Observer
545 void OnThrottleStateChange() override;
547 void AddLatencyInfo(const std::vector<ui::LatencyInfo>& latency_info);
549 private:
550 friend class base::RefCounted<PepperPluginInstanceImpl>;
551 friend class PpapiPluginInstanceTest;
552 friend class PpapiUnittest;
554 // Delete should be called by the WebPlugin before this destructor.
555 ~PepperPluginInstanceImpl() override;
557 // Class to record document load notifications and play them back once the
558 // real document loader becomes available. Used only by external instances.
559 class ExternalDocumentLoader : public blink::WebURLLoaderClient {
560 public:
561 ExternalDocumentLoader();
562 virtual ~ExternalDocumentLoader();
564 void ReplayReceivedData(WebURLLoaderClient* document_loader);
566 // blink::WebURLLoaderClient implementation.
567 virtual void didReceiveData(blink::WebURLLoader* loader,
568 const char* data,
569 int data_length,
570 int encoded_data_length);
571 virtual void didFinishLoading(blink::WebURLLoader* loader,
572 double finish_time,
573 int64_t total_encoded_data_length);
574 virtual void didFail(blink::WebURLLoader* loader,
575 const blink::WebURLError& error);
577 private:
578 std::list<std::string> data_;
579 bool finished_loading_;
580 scoped_ptr<blink::WebURLError> error_;
583 // Implements PPB_Gamepad_API. This is just to avoid having an excessive
584 // number of interfaces implemented by PepperPluginInstanceImpl.
585 class GamepadImpl : public ppapi::thunk::PPB_Gamepad_API,
586 public ppapi::Resource {
587 public:
588 GamepadImpl();
589 // Resource implementation.
590 ppapi::thunk::PPB_Gamepad_API* AsPPB_Gamepad_API() override;
591 void Sample(PP_Instance instance, PP_GamepadsSampleData* data) override;
593 private:
594 ~GamepadImpl() override;
597 // See the static Create functions above for creating PepperPluginInstanceImpl
598 // objects. This constructor is private so that we can hide the
599 // PPP_Instance_Combined details while still having 1 constructor to maintain
600 // for member initialization.
601 PepperPluginInstanceImpl(RenderFrameImpl* render_frame,
602 PluginModule* module,
603 ppapi::PPP_Instance_Combined* instance_interface,
604 blink::WebPluginContainer* container,
605 const GURL& plugin_url);
607 bool LoadFindInterface();
608 bool LoadInputEventInterface();
609 bool LoadMouseLockInterface();
610 bool LoadPdfInterface();
611 bool LoadPrintInterface();
612 bool LoadPrivateInterface();
613 bool LoadTextInputInterface();
614 bool LoadZoomInterface();
616 // Update any transforms that should be applied to the texture layer.
617 void UpdateLayerTransform();
619 // Determines if we think the plugin has focus, both content area and webkit
620 // (see has_webkit_focus_ below).
621 bool PluginHasFocus() const;
622 void SendFocusChangeNotification();
624 void UpdateTouchEventRequest();
626 // Returns true if the plugin has registered to accept wheel events.
627 bool IsAcceptingWheelEvents() const;
629 void ScheduleAsyncDidChangeView();
630 void SendAsyncDidChangeView();
631 void SendDidChangeView();
633 // Reports the current plugin geometry to the plugin by calling
634 // DidChangeView.
635 void ReportGeometry();
637 // Queries the plugin for supported print formats and sets |format| to the
638 // best format to use. Returns false if the plugin does not support any
639 // print format that we can handle (we can handle only PDF).
640 bool GetPreferredPrintOutputFormat(PP_PrintOutputFormat_Dev* format);
641 bool PrintPDFOutput(PP_Resource print_output, blink::WebCanvas* canvas);
643 // Updates the layer for compositing. This creates a layer and attaches to the
644 // container if:
645 // - we have a bound Graphics3D and the Graphics3D has a texture, OR
646 // we have a bound Graphics2D and are using software compositing
647 // - we are not in Flash full-screen mode (or transitioning to it)
648 // Otherwise it destroys the layer.
649 // It does either operation lazily.
650 // device_changed: true if the bound device has been changed, and
651 // UpdateLayer() will be forced to recreate the layer and attaches to the
652 // container.
653 void UpdateLayer(bool device_changed);
655 // Internal helper function for PrintPage().
656 bool PrintPageHelper(PP_PrintPageNumberRange_Dev* page_ranges,
657 int num_ranges,
658 blink::WebCanvas* canvas);
660 void DoSetCursor(blink::WebCursorInfo* cursor);
662 // Internal helper functions for HandleCompositionXXX().
663 bool SendCompositionEventToPlugin(PP_InputEvent_Type type,
664 const base::string16& text);
665 bool SendCompositionEventWithUnderlineInformationToPlugin(
666 PP_InputEvent_Type type,
667 const base::string16& text,
668 const std::vector<blink::WebCompositionUnderline>& underlines,
669 int selection_start,
670 int selection_end);
672 // Internal helper function for XXXInputEvents().
673 void RequestInputEventsHelper(uint32_t event_classes);
675 // Checks if the security origin of the document containing this instance can
676 // assess the security origin of the main frame document.
677 bool CanAccessMainFrame() const;
679 // Returns true if the WebView the plugin is in renders via the accelerated
680 // compositing path.
681 bool IsViewAccelerated();
683 // Track, set and reset size attributes to control the size of the plugin
684 // in and out of fullscreen mode.
685 void KeepSizeAttributesBeforeFullscreen();
686 void SetSizeAttributesForFullscreen();
687 void ResetSizeAttributesAfterFullscreen();
689 bool IsMouseLocked();
690 bool LockMouse();
691 MouseLockDispatcher* GetMouseLockDispatcher();
692 MouseLockDispatcher::LockTarget* GetOrCreateLockTargetAdapter();
693 void UnSetAndDeleteLockTargetAdapter();
695 void DidDataFromWebURLResponse(const blink::WebURLResponse& response,
696 int pending_host_id,
697 const ppapi::URLResponseInfoData& data);
699 void RecordFlashJavaScriptUse();
701 RenderFrameImpl* render_frame_;
702 base::Closure instance_deleted_callback_;
703 scoped_refptr<PluginModule> module_;
704 scoped_ptr<ppapi::PPP_Instance_Combined> instance_interface_;
705 // If this is the NaCl plugin, we create a new module when we switch to the
706 // IPC-based PPAPI proxy. Store the original module and instance interface
707 // so we can shut down properly.
708 scoped_refptr<PluginModule> original_module_;
709 scoped_ptr<ppapi::PPP_Instance_Combined> original_instance_interface_;
711 PP_Instance pp_instance_;
713 // NULL until we have been initialized.
714 blink::WebPluginContainer* container_;
715 scoped_refptr<cc::Layer> compositor_layer_;
716 scoped_refptr<cc::TextureLayer> texture_layer_;
717 scoped_ptr<blink::WebLayer> web_layer_;
718 bool layer_bound_to_fullscreen_;
719 bool layer_is_hardware_;
721 // Plugin URL.
722 const GURL plugin_url_;
724 // Used to track Flash-specific metrics.
725 const bool is_flash_plugin_;
727 // Set to true the first time the plugin is clicked. Used to collect metrics.
728 bool has_been_clicked_;
730 // Used to track if JavaScript has ever been used for this plugin instance.
731 bool javascript_used_;
733 // Responsible for turning on throttling if Power Saver is on.
734 scoped_ptr<PluginInstanceThrottlerImpl> throttler_;
736 // Indicates whether this is a full frame instance, which means it represents
737 // an entire document rather than an embed tag.
738 bool full_frame_;
740 // Stores the current state of the plugin view.
741 ppapi::ViewData view_data_;
742 // The last state sent to the plugin. It is only valid after
743 // |sent_initial_did_change_view_| is set to true.
744 ppapi::ViewData last_sent_view_data_;
746 // Indicates if we've ever sent a didChangeView to the plugin. This ensures we
747 // always send an initial notification, even if the position and clip are the
748 // same as the default values.
749 bool sent_initial_did_change_view_;
751 // The current device context for painting in 2D, 3D or compositor.
752 scoped_refptr<PPB_Graphics3D_Impl> bound_graphics_3d_;
753 PepperGraphics2DHost* bound_graphics_2d_platform_;
754 PepperCompositorHost* bound_compositor_;
756 // We track two types of focus, one from WebKit, which is the focus among
757 // all elements of the page, one one from the browser, which is whether the
758 // tab/window has focus. We tell the plugin it has focus only when both of
759 // these values are set to true.
760 bool has_webkit_focus_;
761 bool has_content_area_focus_;
763 // The id of the current find operation, or -1 if none is in process.
764 int find_identifier_;
766 // Helper object that creates resources.
767 scoped_ptr<ppapi::thunk::ResourceCreationAPI> resource_creation_;
769 // The plugin-provided interfaces.
770 // When adding PPP interfaces, make sure to reset them in ResetAsProxied.
771 const PPP_Find_Private* plugin_find_interface_;
772 const PPP_InputEvent* plugin_input_event_interface_;
773 const PPP_MouseLock* plugin_mouse_lock_interface_;
774 const PPP_Pdf* plugin_pdf_interface_;
775 const PPP_Instance_Private* plugin_private_interface_;
776 const PPP_TextInput_Dev* plugin_textinput_interface_;
777 const PPP_Zoom_Dev* plugin_zoom_interface_;
779 // Flags indicating whether we have asked this plugin instance for the
780 // corresponding interfaces, so that we can ask only once.
781 // When adding flags, make sure to reset them in ResetAsProxied.
782 bool checked_for_plugin_input_event_interface_;
783 bool checked_for_plugin_pdf_interface_;
785 // This is only valid between a successful PrintBegin call and a PrintEnd
786 // call.
787 PP_PrintSettings_Dev current_print_settings_;
788 #if defined(OS_MACOSX)
789 // On the Mac, when we draw the bitmap to the PDFContext, it seems necessary
790 // to keep the pixels valid until CGContextEndPage is called. We use this
791 // variable to hold on to the pixels.
792 scoped_refptr<PPB_ImageData_Impl> last_printed_page_;
793 #endif // defined(OS_MACOSX)
794 // Always when printing to PDF on Linux and when printing for preview on Mac
795 // and Win, the entire document goes into one metafile. However, when users
796 // print only a subset of all the pages, it is impossible to know if a call
797 // to PrintPage() is the last call. Thus in PrintPage(), just store the page
798 // number in |ranges_|. The hack is in PrintEnd(), where a valid |canvas_|
799 // is preserved in PrintWebViewHelper::PrintPages. This makes it possible
800 // to generate the entire PDF given the variables below:
802 // The most recently used WebCanvas, guaranteed to be valid.
803 skia::RefPtr<blink::WebCanvas> canvas_;
804 // An array of page ranges.
805 std::vector<PP_PrintPageNumberRange_Dev> ranges_;
807 scoped_refptr<ppapi::Resource> gamepad_impl_;
808 scoped_refptr<ppapi::Resource> uma_private_impl_;
810 // The plugin print interface.
811 const PPP_Printing_Dev* plugin_print_interface_;
813 // The plugin 3D interface.
814 const PPP_Graphics3D* plugin_graphics_3d_interface_;
816 // Contains the cursor if it's set by the plugin.
817 scoped_ptr<blink::WebCursorInfo> cursor_;
819 // Set to true if this plugin thinks it will always be on top. This allows us
820 // to use a more optimized painting path in some cases.
821 bool always_on_top_;
822 // Even if |always_on_top_| is true, the plugin is not fully visible if there
823 // are some cut-out areas (occupied by iframes higher in the stacking order).
824 // This information is used in the optimized painting path.
825 std::vector<gfx::Rect> cut_outs_rects_;
827 // Implementation of PPB_FlashFullscreen.
829 // Plugin container for fullscreen mode. NULL if not in fullscreen mode. Note:
830 // there is a transition state where fullscreen_container_ is non-NULL but
831 // flash_fullscreen_ is false (see above).
832 FullscreenContainer* fullscreen_container_;
834 // True if we are in "flash" fullscreen mode. False if we are in normal mode
835 // or in transition to fullscreen. Normal fullscreen mode is indicated in
836 // the ViewData.
837 bool flash_fullscreen_;
839 // Implementation of PPB_Fullscreen.
841 // Since entering fullscreen mode is an asynchronous operation, we set this
842 // variable to the desired state at the time we issue the fullscreen change
843 // request. The plugin will receive a DidChangeView event when it goes
844 // fullscreen.
845 bool desired_fullscreen_state_;
847 // WebKit does not resize the plugin when going into fullscreen mode, so we do
848 // this here by modifying the various plugin attributes and then restoring
849 // them on exit.
850 blink::WebString width_before_fullscreen_;
851 blink::WebString height_before_fullscreen_;
852 blink::WebString border_before_fullscreen_;
853 blink::WebString style_before_fullscreen_;
854 gfx::Size screen_size_for_fullscreen_;
856 // The MessageChannel used to implement bidirectional postMessage for the
857 // instance.
858 v8::Persistent<v8::Object> message_channel_object_;
860 // A pointer to the MessageChannel underlying |message_channel_object_|. It is
861 // only valid as long as |message_channel_object_| is alive.
862 MessageChannel* message_channel_;
864 // Bitmap for crashed plugin. Lazily initialized, non-owning pointer.
865 SkBitmap* sad_plugin_;
867 typedef std::set<PluginObject*> PluginObjectSet;
868 PluginObjectSet live_plugin_objects_;
870 // Classes of events that the plugin has registered for, both for filtering
871 // and not. The bits are PP_INPUTEVENT_CLASS_*.
872 uint32_t input_event_mask_;
873 uint32_t filtered_input_event_mask_;
875 // Text composition status.
876 ui::TextInputType text_input_type_;
877 gfx::Rect text_input_caret_;
878 gfx::Rect text_input_caret_bounds_;
879 bool text_input_caret_set_;
881 // Text selection status.
882 std::string surrounding_text_;
883 size_t selection_caret_;
884 size_t selection_anchor_;
886 scoped_refptr<ppapi::TrackedCallback> lock_mouse_callback_;
888 // Track pending user gestures so out-of-process plugins can respond to
889 // a user gesture after it has been processed.
890 PP_TimeTicks pending_user_gesture_;
891 blink::WebUserGestureToken pending_user_gesture_token_;
893 // We store the arguments so we can re-send them if we are reset to talk to
894 // NaCl via the IPC NaCl proxy.
895 std::vector<std::string> argn_;
896 std::vector<std::string> argv_;
898 // Non-owning pointer to the document loader, if any.
899 blink::WebURLLoaderClient* document_loader_;
900 // State for deferring document loads. Used only by external instances.
901 blink::WebURLResponse external_document_response_;
902 scoped_ptr<ExternalDocumentLoader> external_document_loader_;
903 bool external_document_load_;
905 // The ContentDecryptorDelegate forwards PPP_ContentDecryptor_Private
906 // calls and handles PPB_ContentDecryptor_Private calls.
907 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_;
909 // The link currently under the cursor.
910 base::string16 link_under_cursor_;
912 // We store the isolate at construction so that we can be sure to use the
913 // Isolate in which this Instance was created when interacting with v8.
914 v8::Isolate* isolate_;
916 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_;
918 bool is_deleted_;
920 // The text that is currently selected in the plugin.
921 base::string16 selected_text_;
923 int64 last_input_number_;
925 bool is_tracking_latency_;
927 bool initialized_;
929 // We use a weak ptr factory for scheduling DidChangeView events so that we
930 // can tell whether updates are pending and consolidate them. When there's
931 // already a weak ptr pending (HasWeakPtrs is true), code should update the
932 // view_data_ but not send updates. This also allows us to cancel scheduled
933 // view change events.
934 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_;
935 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_;
937 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl);
940 } // namespace content
942 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_