Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / content / renderer / pepper / pepper_plugin_instance_impl.h
blobbab9c0bf4fe707817437d2fa9cbc9a0ed48445b3
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_text_input_dev.h"
32 #include "ppapi/c/pp_completion_callback.h"
33 #include "ppapi/c/pp_instance.h"
34 #include "ppapi/c/pp_time.h"
35 #include "ppapi/c/pp_var.h"
36 #include "ppapi/c/ppb_audio_config.h"
37 #include "ppapi/c/ppb_gamepad.h"
38 #include "ppapi/c/ppb_input_event.h"
39 #include "ppapi/c/ppp_graphics_3d.h"
40 #include "ppapi/c/ppp_input_event.h"
41 #include "ppapi/c/ppp_mouse_lock.h"
42 #include "ppapi/c/private/ppb_content_decryptor_private.h"
43 #include "ppapi/c/private/ppp_find_private.h"
44 #include "ppapi/c/private/ppp_instance_private.h"
45 #include "ppapi/c/private/ppp_pdf.h"
46 #include "ppapi/shared_impl/ppb_instance_shared.h"
47 #include "ppapi/shared_impl/ppb_view_shared.h"
48 #include "ppapi/shared_impl/singleton_resource_id.h"
49 #include "ppapi/shared_impl/tracked_callback.h"
50 #include "ppapi/thunk/ppb_gamepad_api.h"
51 #include "ppapi/thunk/resource_creation_api.h"
52 #include "skia/ext/refptr.h"
53 #include "third_party/WebKit/public/platform/WebCanvas.h"
54 #include "third_party/WebKit/public/platform/WebString.h"
55 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
56 #include "third_party/WebKit/public/platform/WebURLResponse.h"
57 #include "third_party/WebKit/public/web/WebPlugin.h"
58 #include "third_party/WebKit/public/web/WebUserGestureToken.h"
59 #include "ui/base/ime/text_input_type.h"
60 #include "ui/events/latency_info.h"
61 #include "ui/gfx/geometry/rect.h"
62 #include "url/gurl.h"
63 #include "v8/include/v8.h"
65 struct PP_Point;
66 struct _NPP;
68 class SkBitmap;
69 class TransportDIB;
71 namespace blink {
72 class WebInputEvent;
73 class WebLayer;
74 class WebMouseEvent;
75 class WebPluginContainer;
76 class WebURLLoader;
77 class WebURLResponse;
78 struct WebCompositionUnderline;
79 struct WebCursorInfo;
80 struct WebURLError;
81 struct WebPrintParams;
84 namespace cc {
85 class TextureLayer;
88 namespace gfx {
89 class Range;
92 namespace ppapi {
93 class Resource;
94 struct InputEventData;
95 struct PPP_Instance_Combined;
96 class ScopedPPVar;
99 namespace content {
101 class ContentDecryptorDelegate;
102 class FullscreenContainer;
103 class MessageChannel;
104 class PepperCompositorHost;
105 class PepperGraphics2DHost;
106 class PluginInstanceThrottlerImpl;
107 class PluginModule;
108 class PluginObject;
109 class PPB_Graphics3D_Impl;
110 class PPB_ImageData_Impl;
111 class PPB_URLLoader_Impl;
112 class RenderFrameImpl;
113 class RenderViewImpl;
115 // Represents one time a plugin appears on one web page.
117 // Note: to get from a PP_Instance to a PepperPluginInstance*, use the
118 // ResourceTracker.
119 class CONTENT_EXPORT PepperPluginInstanceImpl
120 : public base::RefCounted<PepperPluginInstanceImpl>,
121 public NON_EXPORTED_BASE(PepperPluginInstance),
122 public ppapi::PPB_Instance_Shared,
123 public NON_EXPORTED_BASE(cc::TextureLayerClient),
124 public RenderFrameObserver,
125 public NON_EXPORTED_BASE(PluginInstanceThrottler::Observer) {
126 public:
127 // Create and return a PepperPluginInstanceImpl object which supports the most
128 // recent version of PPP_Instance possible by querying the given
129 // get_plugin_interface function. If the plugin does not support any valid
130 // PPP_Instance interface, returns NULL.
131 static PepperPluginInstanceImpl* Create(RenderFrameImpl* render_frame,
132 PluginModule* module,
133 blink::WebPluginContainer* container,
134 const GURL& plugin_url);
135 RenderFrameImpl* render_frame() const { return render_frame_; }
136 PluginModule* module() const { return module_.get(); }
138 blink::WebPluginContainer* container() const { return container_; }
140 PluginInstanceThrottlerImpl* throttler() const { return throttler_.get(); }
142 // Returns the PP_Instance uniquely identifying this instance. Guaranteed
143 // nonzero.
144 PP_Instance pp_instance() const { return pp_instance_; }
146 ppapi::thunk::ResourceCreationAPI& resource_creation() {
147 return *resource_creation_.get();
150 MessageChannel* message_channel() { return message_channel_; }
151 v8::Local<v8::Object> GetMessageChannelObject();
152 // Called when |message_channel_| is destroyed as it may be destroyed prior to
153 // the plugin being destroyed.
154 void MessageChannelDestroyed();
156 // Return the v8 context for the frame that the plugin is contained in. Care
157 // should be taken to use the correct context for plugin<->JS interactions.
158 // In cases where JS calls into the plugin, the caller's context should
159 // typically be used. When calling from the plugin into JS, this context
160 // should typically used.
161 v8::Local<v8::Context> GetMainWorldContext();
163 // Does some pre-destructor cleanup on the instance. This is necessary
164 // because some cleanup depends on the plugin instance still existing (like
165 // calling the plugin's DidDestroy function). This function is called from
166 // the WebPlugin implementation when WebKit is about to remove the plugin.
167 void Delete();
169 // Returns true if Delete() has been called on this object.
170 bool is_deleted() const;
172 GURL document_url() const { return document_url_; }
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& window,
211 const gfx::Rect& clip,
212 const gfx::Rect& unobscured,
213 const std::vector<gfx::Rect>& cut_outs_rects);
215 // Handlers for composition events.
216 bool HandleCompositionStart(const base::string16& text);
217 bool HandleCompositionUpdate(
218 const base::string16& text,
219 const std::vector<blink::WebCompositionUnderline>& underlines,
220 int selection_start,
221 int selection_end);
222 bool HandleCompositionEnd(const base::string16& text);
223 bool HandleTextInput(const base::string16& text);
225 // Gets the current text input status.
226 ui::TextInputType text_input_type() const { return text_input_type_; }
227 gfx::Rect GetCaretBounds() const;
228 bool IsPluginAcceptingCompositionEvents() const;
229 void GetSurroundingText(base::string16* text, gfx::Range* range) const;
231 // Notifications about focus changes, see has_webkit_focus_ below.
232 void SetWebKitFocus(bool has_focus);
233 void SetContentAreaFocus(bool has_focus);
235 // Notification about page visibility. The default is "visible".
236 void PageVisibilityChanged(bool is_visible);
238 // Notifications that the view has started painting. This message is used to
239 // send Flush callbacks to the plugin for Graphics2D/3D.
240 void ViewInitiatedPaint();
242 // Tracks all live PluginObjects.
243 void AddPluginObject(PluginObject* plugin_object);
244 void RemovePluginObject(PluginObject* plugin_object);
246 base::string16 GetSelectedText(bool html);
247 base::string16 GetLinkAtPosition(const gfx::Point& point);
248 void RequestSurroundingText(size_t desired_number_of_characters);
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 void 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 PostMessage(PP_Instance instance, PP_Var message) override;
427 int32_t RegisterMessageHandler(PP_Instance instance,
428 void* user_data,
429 const PPP_MessageHandler_0_2* handler,
430 PP_Resource message_loop) override;
431 void UnregisterMessageHandler(PP_Instance instance) override;
432 PP_Bool SetCursor(PP_Instance instance,
433 PP_MouseCursor_Type type,
434 PP_Resource image,
435 const PP_Point* hot_spot) override;
436 int32_t LockMouse(PP_Instance instance,
437 scoped_refptr<ppapi::TrackedCallback> callback) override;
438 void UnlockMouse(PP_Instance instance) override;
439 void SetTextInputType(PP_Instance instance, PP_TextInput_Type type) override;
440 void UpdateCaretPosition(PP_Instance instance,
441 const PP_Rect& caret,
442 const PP_Rect& bounding_box) override;
443 void CancelCompositionText(PP_Instance instance) override;
444 void SelectionChanged(PP_Instance instance) override;
445 void UpdateSurroundingText(PP_Instance instance,
446 const char* text,
447 uint32_t caret,
448 uint32_t anchor) override;
449 PP_Var ResolveRelativeToDocument(PP_Instance instance,
450 PP_Var relative,
451 PP_URLComponents_Dev* components) override;
452 PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) override;
453 PP_Bool DocumentCanAccessDocument(PP_Instance instance,
454 PP_Instance target) override;
455 PP_Var GetDocumentURL(PP_Instance instance,
456 PP_URLComponents_Dev* components) override;
457 PP_Var GetPluginInstanceURL(PP_Instance instance,
458 PP_URLComponents_Dev* components) override;
459 PP_Var GetPluginReferrerURL(PP_Instance instance,
460 PP_URLComponents_Dev* components) override;
462 // PPB_ContentDecryptor_Private implementation.
463 void PromiseResolved(PP_Instance instance, uint32 promise_id) override;
464 void PromiseResolvedWithSession(PP_Instance instance,
465 uint32 promise_id,
466 PP_Var session_id_var) override;
467 void PromiseRejected(PP_Instance instance,
468 uint32 promise_id,
469 PP_CdmExceptionCode exception_code,
470 uint32 system_code,
471 PP_Var error_description_var) override;
472 void SessionMessage(PP_Instance instance,
473 PP_Var session_id_var,
474 PP_CdmMessageType message_type,
475 PP_Var message_var,
476 PP_Var legacy_destination_url) override;
477 void SessionKeysChange(
478 PP_Instance instance,
479 PP_Var session_id_var,
480 PP_Bool has_additional_usable_key,
481 uint32_t key_count,
482 const struct PP_KeyInformation key_information[]) override;
483 void SessionExpirationChange(PP_Instance instance,
484 PP_Var session_id_var,
485 PP_Time new_expiry_time) override;
486 void SessionClosed(PP_Instance instance, PP_Var session_id_var) override;
487 void LegacySessionError(PP_Instance instance,
488 PP_Var session_id_var,
489 PP_CdmExceptionCode exception_code,
490 uint32 system_code,
491 PP_Var error_description_var) override;
492 void DeliverBlock(PP_Instance instance,
493 PP_Resource decrypted_block,
494 const PP_DecryptedBlockInfo* block_info) override;
495 void DecoderInitializeDone(PP_Instance instance,
496 PP_DecryptorStreamType decoder_type,
497 uint32_t request_id,
498 PP_Bool success) override;
499 void DecoderDeinitializeDone(PP_Instance instance,
500 PP_DecryptorStreamType decoder_type,
501 uint32_t request_id) override;
502 void DecoderResetDone(PP_Instance instance,
503 PP_DecryptorStreamType decoder_type,
504 uint32_t request_id) override;
505 void DeliverFrame(PP_Instance instance,
506 PP_Resource decrypted_frame,
507 const PP_DecryptedFrameInfo* frame_info) override;
508 void DeliverSamples(PP_Instance instance,
509 PP_Resource audio_frames,
510 const PP_DecryptedSampleInfo* sample_info) override;
512 // Reset this instance as proxied. Assigns the instance a new module, resets
513 // cached interfaces to point to the out-of-process proxy and re-sends
514 // DidCreate, DidChangeView, and HandleDocumentLoad (if necessary).
515 // This should be used only when switching an in-process instance to an
516 // external out-of-process instance.
517 PP_ExternalPluginResult ResetAsProxied(scoped_refptr<PluginModule> module);
519 // Checks whether this is a valid instance of the given module. After calling
520 // ResetAsProxied above, a NaCl plugin instance's module changes, so external
521 // hosts won't recognize it as a valid instance of the original module. This
522 // method fixes that be checking that either module_ or original_module_ match
523 // the given module.
524 bool IsValidInstanceOf(PluginModule* module);
526 // cc::TextureLayerClient implementation.
527 bool PrepareTextureMailbox(
528 cc::TextureMailbox* mailbox,
529 scoped_ptr<cc::SingleReleaseCallback>* release_callback,
530 bool use_shared_memory) override;
532 // RenderFrameObserver
533 void OnDestruct() override;
535 // PluginInstanceThrottler::Observer
536 void OnThrottleStateChange() override;
537 void OnHiddenForPlaceholder(bool hidden) override;
539 void AddLatencyInfo(const std::vector<ui::LatencyInfo>& latency_info);
541 private:
542 friend class base::RefCounted<PepperPluginInstanceImpl>;
543 friend class PpapiPluginInstanceTest;
544 friend class PpapiUnittest;
546 // Delete should be called by the WebPlugin before this destructor.
547 ~PepperPluginInstanceImpl() override;
549 // Class to record document load notifications and play them back once the
550 // real document loader becomes available. Used only by external instances.
551 class ExternalDocumentLoader : public blink::WebURLLoaderClient {
552 public:
553 ExternalDocumentLoader();
554 virtual ~ExternalDocumentLoader();
556 void ReplayReceivedData(WebURLLoaderClient* document_loader);
558 // blink::WebURLLoaderClient implementation.
559 virtual void didReceiveData(blink::WebURLLoader* loader,
560 const char* data,
561 int data_length,
562 int encoded_data_length);
563 virtual void didFinishLoading(blink::WebURLLoader* loader,
564 double finish_time,
565 int64_t total_encoded_data_length);
566 virtual void didFail(blink::WebURLLoader* loader,
567 const blink::WebURLError& error);
569 private:
570 std::list<std::string> data_;
571 bool finished_loading_;
572 scoped_ptr<blink::WebURLError> error_;
575 // Implements PPB_Gamepad_API. This is just to avoid having an excessive
576 // number of interfaces implemented by PepperPluginInstanceImpl.
577 class GamepadImpl : public ppapi::thunk::PPB_Gamepad_API,
578 public ppapi::Resource {
579 public:
580 GamepadImpl();
581 // Resource implementation.
582 ppapi::thunk::PPB_Gamepad_API* AsPPB_Gamepad_API() override;
583 void Sample(PP_Instance instance, PP_GamepadsSampleData* data) override;
585 private:
586 ~GamepadImpl() override;
589 // See the static Create functions above for creating PepperPluginInstanceImpl
590 // objects. This constructor is private so that we can hide the
591 // PPP_Instance_Combined details while still having 1 constructor to maintain
592 // for member initialization.
593 PepperPluginInstanceImpl(RenderFrameImpl* render_frame,
594 PluginModule* module,
595 ppapi::PPP_Instance_Combined* instance_interface,
596 blink::WebPluginContainer* container,
597 const GURL& plugin_url);
599 bool LoadFindInterface();
600 bool LoadInputEventInterface();
601 bool LoadMouseLockInterface();
602 bool LoadPdfInterface();
603 bool LoadPrintInterface();
604 bool LoadPrivateInterface();
605 bool LoadTextInputInterface();
607 // Update any transforms that should be applied to the texture layer.
608 void UpdateLayerTransform();
610 // Determines if we think the plugin has focus, both content area and webkit
611 // (see has_webkit_focus_ below).
612 bool PluginHasFocus() const;
613 void SendFocusChangeNotification();
615 void UpdateTouchEventRequest();
617 // Returns true if the plugin has registered to accept wheel events.
618 bool IsAcceptingWheelEvents() const;
620 void ScheduleAsyncDidChangeView();
621 void SendAsyncDidChangeView();
622 void SendDidChangeView();
624 // Reports the current plugin geometry to the plugin by calling
625 // DidChangeView.
626 void ReportGeometry();
628 // Queries the plugin for supported print formats and sets |format| to the
629 // best format to use. Returns false if the plugin does not support any
630 // print format that we can handle (we can handle only PDF).
631 bool GetPreferredPrintOutputFormat(PP_PrintOutputFormat_Dev* format);
632 bool PrintPDFOutput(PP_Resource print_output, blink::WebCanvas* canvas);
634 // Updates the layer for compositing. This creates a layer and attaches to the
635 // container if:
636 // - we have a bound Graphics3D and the Graphics3D has a texture, OR
637 // we have a bound Graphics2D and are using software compositing
638 // - we are not in Flash full-screen mode (or transitioning to it)
639 // Otherwise it destroys the layer.
640 // It does either operation lazily.
641 // device_changed: true if the bound device has been changed, and
642 // UpdateLayer() will be forced to recreate the layer and attaches to the
643 // container.
644 void UpdateLayer(bool device_changed);
646 // Internal helper function for PrintPage().
647 void PrintPageHelper(PP_PrintPageNumberRange_Dev* page_ranges,
648 int num_ranges,
649 blink::WebCanvas* canvas);
651 void DoSetCursor(blink::WebCursorInfo* cursor);
653 // Internal helper functions for HandleCompositionXXX().
654 bool SendCompositionEventToPlugin(PP_InputEvent_Type type,
655 const base::string16& text);
656 bool SendCompositionEventWithUnderlineInformationToPlugin(
657 PP_InputEvent_Type type,
658 const base::string16& text,
659 const std::vector<blink::WebCompositionUnderline>& underlines,
660 int selection_start,
661 int selection_end);
663 // Internal helper function for XXXInputEvents().
664 void RequestInputEventsHelper(uint32_t event_classes);
666 // Checks if the security origin of the document containing this instance can
667 // assess the security origin of the main frame document.
668 bool CanAccessMainFrame() const;
670 // Returns true if the WebView the plugin is in renders via the accelerated
671 // compositing path.
672 bool IsViewAccelerated();
674 // Track, set and reset size attributes to control the size of the plugin
675 // in and out of fullscreen mode.
676 void KeepSizeAttributesBeforeFullscreen();
677 void SetSizeAttributesForFullscreen();
678 void ResetSizeAttributesAfterFullscreen();
680 bool IsMouseLocked();
681 bool LockMouse();
682 MouseLockDispatcher* GetMouseLockDispatcher();
683 MouseLockDispatcher::LockTarget* GetOrCreateLockTargetAdapter();
684 void UnSetAndDeleteLockTargetAdapter();
686 void DidDataFromWebURLResponse(const blink::WebURLResponse& response,
687 int pending_host_id,
688 const ppapi::URLResponseInfoData& data);
690 void RecordFlashJavaScriptUse();
692 RenderFrameImpl* render_frame_;
693 base::Closure instance_deleted_callback_;
694 scoped_refptr<PluginModule> module_;
695 scoped_ptr<ppapi::PPP_Instance_Combined> instance_interface_;
696 // If this is the NaCl plugin, we create a new module when we switch to the
697 // IPC-based PPAPI proxy. Store the original module and instance interface
698 // so we can shut down properly.
699 scoped_refptr<PluginModule> original_module_;
700 scoped_ptr<ppapi::PPP_Instance_Combined> original_instance_interface_;
702 PP_Instance pp_instance_;
704 // NULL until we have been initialized.
705 blink::WebPluginContainer* container_;
706 scoped_refptr<cc::Layer> compositor_layer_;
707 scoped_refptr<cc::TextureLayer> texture_layer_;
708 scoped_ptr<blink::WebLayer> web_layer_;
709 bool layer_bound_to_fullscreen_;
710 bool layer_is_hardware_;
712 // Plugin URL.
713 const GURL plugin_url_;
715 GURL document_url_;
717 // Used to track Flash-specific metrics.
718 const bool is_flash_plugin_;
720 // Set to true the first time the plugin is clicked. Used to collect metrics.
721 bool has_been_clicked_;
723 // Used to track if JavaScript has ever been used for this plugin instance.
724 bool javascript_used_;
726 // Responsible for turning on throttling if Power Saver is on.
727 scoped_ptr<PluginInstanceThrottlerImpl> throttler_;
729 // Indicates whether this is a full frame instance, which means it represents
730 // an entire document rather than an embed tag.
731 bool full_frame_;
733 // Stores the current state of the plugin view.
734 ppapi::ViewData view_data_;
735 // The last state sent to the plugin. It is only valid after
736 // |sent_initial_did_change_view_| is set to true.
737 ppapi::ViewData last_sent_view_data_;
738 // The current unobscured portion of the plugin.
739 gfx::Rect unobscured_rect_;
741 // Indicates if we've ever sent a didChangeView to the plugin. This ensures we
742 // always send an initial notification, even if the position and clip are the
743 // same as the default values.
744 bool sent_initial_did_change_view_;
746 // The current device context for painting in 2D, 3D or compositor.
747 scoped_refptr<PPB_Graphics3D_Impl> bound_graphics_3d_;
748 PepperGraphics2DHost* bound_graphics_2d_platform_;
749 PepperCompositorHost* bound_compositor_;
751 // We track two types of focus, one from WebKit, which is the focus among
752 // all elements of the page, one one from the browser, which is whether the
753 // tab/window has focus. We tell the plugin it has focus only when both of
754 // these values are set to true.
755 bool has_webkit_focus_;
756 bool has_content_area_focus_;
758 // The id of the current find operation, or -1 if none is in process.
759 int find_identifier_;
761 // Helper object that creates resources.
762 scoped_ptr<ppapi::thunk::ResourceCreationAPI> resource_creation_;
764 // The plugin-provided interfaces.
765 // When adding PPP interfaces, make sure to reset them in ResetAsProxied.
766 const PPP_Find_Private* plugin_find_interface_;
767 const PPP_InputEvent* plugin_input_event_interface_;
768 const PPP_MouseLock* plugin_mouse_lock_interface_;
769 const PPP_Pdf* plugin_pdf_interface_;
770 const PPP_Instance_Private* plugin_private_interface_;
771 const PPP_TextInput_Dev* plugin_textinput_interface_;
773 // Flags indicating whether we have asked this plugin instance for the
774 // corresponding interfaces, so that we can ask only once.
775 // When adding flags, make sure to reset them in ResetAsProxied.
776 bool checked_for_plugin_input_event_interface_;
777 bool checked_for_plugin_pdf_interface_;
779 // This is only valid between a successful PrintBegin call and a PrintEnd
780 // call.
781 PP_PrintSettings_Dev current_print_settings_;
782 #if defined(OS_MACOSX)
783 // On the Mac, when we draw the bitmap to the PDFContext, it seems necessary
784 // to keep the pixels valid until CGContextEndPage is called. We use this
785 // variable to hold on to the pixels.
786 scoped_refptr<PPB_ImageData_Impl> last_printed_page_;
787 #endif // defined(OS_MACOSX)
788 // Always when printing to PDF on Linux and when printing for preview on Mac
789 // and Win, the entire document goes into one metafile. However, when users
790 // print only a subset of all the pages, it is impossible to know if a call
791 // to PrintPage() is the last call. Thus in PrintPage(), just store the page
792 // number in |ranges_|. The hack is in PrintEnd(), where a valid |canvas_|
793 // is preserved in PrintWebViewHelper::PrintPages. This makes it possible
794 // to generate the entire PDF given the variables below:
796 // The most recently used WebCanvas, guaranteed to be valid.
797 skia::RefPtr<blink::WebCanvas> canvas_;
798 // An array of page ranges.
799 std::vector<PP_PrintPageNumberRange_Dev> ranges_;
801 scoped_refptr<ppapi::Resource> gamepad_impl_;
802 scoped_refptr<ppapi::Resource> uma_private_impl_;
804 // The plugin print interface.
805 const PPP_Printing_Dev* plugin_print_interface_;
807 // The plugin 3D interface.
808 const PPP_Graphics3D* plugin_graphics_3d_interface_;
810 // Contains the cursor if it's set by the plugin.
811 scoped_ptr<blink::WebCursorInfo> cursor_;
813 // Set to true if this plugin thinks it will always be on top. This allows us
814 // to use a more optimized painting path in some cases.
815 bool always_on_top_;
816 // Even if |always_on_top_| is true, the plugin is not fully visible if there
817 // are some cut-out areas (occupied by iframes higher in the stacking order).
818 // This information is used in the optimized painting path.
819 std::vector<gfx::Rect> cut_outs_rects_;
821 // Implementation of PPB_FlashFullscreen.
823 // Plugin container for fullscreen mode. NULL if not in fullscreen mode. Note:
824 // there is a transition state where fullscreen_container_ is non-NULL but
825 // flash_fullscreen_ is false (see above).
826 FullscreenContainer* fullscreen_container_;
828 // True if we are in "flash" fullscreen mode. False if we are in normal mode
829 // or in transition to fullscreen. Normal fullscreen mode is indicated in
830 // the ViewData.
831 bool flash_fullscreen_;
833 // Implementation of PPB_Fullscreen.
835 // Since entering fullscreen mode is an asynchronous operation, we set this
836 // variable to the desired state at the time we issue the fullscreen change
837 // request. The plugin will receive a DidChangeView event when it goes
838 // fullscreen.
839 bool desired_fullscreen_state_;
841 // WebKit does not resize the plugin when going into fullscreen mode, so we do
842 // this here by modifying the various plugin attributes and then restoring
843 // them on exit.
844 blink::WebString width_before_fullscreen_;
845 blink::WebString height_before_fullscreen_;
846 blink::WebString border_before_fullscreen_;
847 blink::WebString style_before_fullscreen_;
848 gfx::Size screen_size_for_fullscreen_;
850 // The MessageChannel used to implement bidirectional postMessage for the
851 // instance.
852 v8::Persistent<v8::Object> message_channel_object_;
854 // A pointer to the MessageChannel underlying |message_channel_object_|. It is
855 // only valid as long as |message_channel_object_| is alive.
856 MessageChannel* message_channel_;
858 // Bitmap for crashed plugin. Lazily initialized, non-owning pointer.
859 SkBitmap* sad_plugin_;
861 typedef std::set<PluginObject*> PluginObjectSet;
862 PluginObjectSet live_plugin_objects_;
864 // Classes of events that the plugin has registered for, both for filtering
865 // and not. The bits are PP_INPUTEVENT_CLASS_*.
866 uint32_t input_event_mask_;
867 uint32_t filtered_input_event_mask_;
869 // Text composition status.
870 ui::TextInputType text_input_type_;
871 gfx::Rect text_input_caret_;
872 gfx::Rect text_input_caret_bounds_;
873 bool text_input_caret_set_;
875 // Text selection status.
876 std::string surrounding_text_;
877 size_t selection_caret_;
878 size_t selection_anchor_;
880 scoped_refptr<ppapi::TrackedCallback> lock_mouse_callback_;
882 // Track pending user gestures so out-of-process plugins can respond to
883 // a user gesture after it has been processed.
884 PP_TimeTicks pending_user_gesture_;
885 blink::WebUserGestureToken pending_user_gesture_token_;
887 // We store the arguments so we can re-send them if we are reset to talk to
888 // NaCl via the IPC NaCl proxy.
889 std::vector<std::string> argn_;
890 std::vector<std::string> argv_;
892 // Non-owning pointer to the document loader, if any.
893 blink::WebURLLoaderClient* document_loader_;
894 // State for deferring document loads. Used only by external instances.
895 blink::WebURLResponse external_document_response_;
896 scoped_ptr<ExternalDocumentLoader> external_document_loader_;
897 bool external_document_load_;
899 // The ContentDecryptorDelegate forwards PPP_ContentDecryptor_Private
900 // calls and handles PPB_ContentDecryptor_Private calls.
901 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_;
903 // The link currently under the cursor.
904 base::string16 link_under_cursor_;
906 // We store the isolate at construction so that we can be sure to use the
907 // Isolate in which this Instance was created when interacting with v8.
908 v8::Isolate* isolate_;
910 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_;
912 bool is_deleted_;
914 // The text that is currently selected in the plugin.
915 base::string16 selected_text_;
917 int64 last_input_number_;
919 bool is_tracking_latency_;
921 bool initialized_;
923 // We use a weak ptr factory for scheduling DidChangeView events so that we
924 // can tell whether updates are pending and consolidate them. When there's
925 // already a weak ptr pending (HasWeakPtrs is true), code should update the
926 // view_data_ but not send updates. This also allows us to cancel scheduled
927 // view change events.
928 base::WeakPtrFactory<PepperPluginInstanceImpl> view_change_weak_ptr_factory_;
929 base::WeakPtrFactory<PepperPluginInstanceImpl> weak_factory_;
931 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl);
934 } // namespace content
936 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_