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
14 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
15 #define CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
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
;
34 class BrowserPluginGuest
;
35 class BrowserPluginGuestManager
;
36 class RenderWidgetHostImpl
;
37 class WebContentsImpl
;
38 struct NativeWebKeyboardEvent
;
40 class CONTENT_EXPORT BrowserPluginEmbedder
: public WebContentsObserver
{
42 virtual ~BrowserPluginEmbedder();
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 virtual 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
);
74 explicit BrowserPluginEmbedder(WebContentsImpl
* web_contents
);
76 BrowserPluginGuestManager
* GetBrowserPluginGuestManager() const;
78 void ClearGuestDragStateIfApplicable();
80 bool DidSendScreenRectsCallback(WebContents
* guest_web_contents
);
82 bool SetZoomLevelCallback(double level
, WebContents
* guest_web_contents
);
84 bool UnlockMouseIfNecessaryCallback(bool* mouse_unlocked
, WebContents
* guest
);
87 void OnAttach(int instance_id
,
88 const BrowserPluginHostMsg_Attach_Params
& params
);
89 void OnPluginAtPositionResponse(int instance_id
,
91 const gfx::Point
& position
);
93 // Used to correctly update the cursor when dragging over a guest, and to
94 // handle a race condition when dropping onto the guest that started the drag
95 // (the race is that the dragend message arrives before the drop message so
96 // the drop never takes place).
98 base::WeakPtr
<BrowserPluginGuest
> guest_dragging_over_
;
100 // Pointer to the guest that started the drag, used to forward necessary drag
101 // status messages to the correct guest.
102 base::WeakPtr
<BrowserPluginGuest
> guest_started_drag_
;
104 // Keeps track of "dragend" state.
105 bool guest_drag_ending_
;
107 base::WeakPtrFactory
<BrowserPluginEmbedder
> weak_ptr_factory_
;
109 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder
);
112 } // namespace content
114 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_