Retry: Win Video Capture: Create an STA |video_capture_thread_| from MediaStreamManager.
[chromium-blink-merge.git] / content / browser / browser_plugin / browser_plugin_embedder.h
blob7ea98f7773a5ea22bd168c15921fdd00b8ba8cf6
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 // A BrowserPluginEmbedder handles messages coming from a BrowserPlugin's
6 // embedder that are not directed at any particular existing guest process.
7 // In the beginning, when a BrowserPlugin instance in the embedder renderer
8 // process requests an initial navigation, the WebContents for that renderer
9 // renderer creates a BrowserPluginEmbedder for itself. The
10 // BrowserPluginEmbedder, in turn, forwards the requests to a
11 // BrowserPluginGuestManager, which creates and manages the lifetime of the new
12 // guest.
14 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
15 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
17 #include <map>
19 #include "base/memory/weak_ptr.h"
20 #include "base/values.h"
21 #include "content/public/browser/web_contents.h"
22 #include "content/public/browser/web_contents_observer.h"
23 #include "third_party/WebKit/public/web/WebDragOperation.h"
25 struct BrowserPluginHostMsg_Attach_Params;
26 struct BrowserPluginHostMsg_ResizeGuest_Params;
28 namespace gfx {
29 class Point;
32 namespace content {
34 class BrowserPluginGuest;
35 class BrowserPluginGuestManager;
36 class RenderWidgetHostImpl;
37 class WebContentsImpl;
38 struct NativeWebKeyboardEvent;
40 class CONTENT_EXPORT BrowserPluginEmbedder : public WebContentsObserver {
41 public:
42 ~BrowserPluginEmbedder() override;
44 static BrowserPluginEmbedder* Create(WebContentsImpl* web_contents);
46 // Returns this embedder's WebContentsImpl.
47 WebContentsImpl* GetWebContents() const;
49 // Called when embedder's |rwh| has sent screen rects to renderer.
50 void DidSendScreenRects();
52 // WebContentsObserver implementation.
53 bool OnMessageReceived(const IPC::Message& message) override;
55 void DragSourceEndedAt(int client_x, int client_y, int screen_x,
56 int screen_y, blink::WebDragOperation operation);
58 void OnUpdateDragCursor(bool* handled);
60 void DragEnteredGuest(BrowserPluginGuest* guest);
62 void DragLeftGuest(BrowserPluginGuest* guest);
64 void StartDrag(BrowserPluginGuest* guest);
66 // Sends EndSystemDrag message to the guest that initiated the last drag/drop
67 // operation, if there's any.
68 void SystemDragEnded();
70 // Used to handle special keyboard events.
71 bool HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
73 // Find the given |search_text| in the page. Returns true if the find request
74 // is handled by this browser plugin embedder.
75 bool Find(int request_id,
76 const base::string16& search_text,
77 const blink::WebFindOptions& options);
79 private:
80 explicit BrowserPluginEmbedder(WebContentsImpl* web_contents);
82 BrowserPluginGuestManager* GetBrowserPluginGuestManager() const;
84 void ClearGuestDragStateIfApplicable();
86 bool DidSendScreenRectsCallback(WebContents* guest_web_contents);
88 bool UnlockMouseIfNecessaryCallback(bool* mouse_unlocked, WebContents* guest);
90 bool FindInGuest(int request_id,
91 const base::string16& search_text,
92 const blink::WebFindOptions& options,
93 WebContents* guest);
95 // Message handlers.
96 void OnAttach(int instance_id,
97 const BrowserPluginHostMsg_Attach_Params& params);
98 void OnPluginAtPositionResponse(int instance_id,
99 int request_id,
100 const gfx::Point& position);
102 // Used to correctly update the cursor when dragging over a guest, and to
103 // handle a race condition when dropping onto the guest that started the drag
104 // (the race is that the dragend message arrives before the drop message so
105 // the drop never takes place).
106 // crbug.com/233571
107 base::WeakPtr<BrowserPluginGuest> guest_dragging_over_;
109 // Pointer to the guest that started the drag, used to forward necessary drag
110 // status messages to the correct guest.
111 base::WeakPtr<BrowserPluginGuest> guest_started_drag_;
113 // Keeps track of "dragend" state.
114 bool guest_drag_ending_;
116 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_;
118 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder);
121 } // namespace content
123 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_