Add a FrameHostMsg_BeginNavigation IPC
[chromium-blink-merge.git] / content / browser / browser_plugin / browser_plugin_embedder.h
blob3c35bef17a722a605fb8f2ae0c38ec96c576fbe9
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 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 private:
71 explicit BrowserPluginEmbedder(WebContentsImpl* web_contents);
73 BrowserPluginGuestManager* GetBrowserPluginGuestManager() const;
75 bool DidSendScreenRectsCallback(WebContents* guest_web_contents);
77 bool SetZoomLevelCallback(double level, WebContents* guest_web_contents);
79 bool UnlockMouseIfNecessaryCallback(const NativeWebKeyboardEvent& event,
80 WebContents* guest);
82 // Called by the content embedder when a guest exists with the provided
83 // |instance_id|.
84 void OnGuestCallback(int instance_id,
85 const BrowserPluginHostMsg_Attach_Params& params,
86 const base::DictionaryValue* extra_params,
87 WebContents* guest_web_contents);
89 // Message handlers.
91 void OnAttach(int instance_id,
92 const BrowserPluginHostMsg_Attach_Params& params,
93 const base::DictionaryValue& extra_params);
94 void OnPluginAtPositionResponse(int instance_id,
95 int request_id,
96 const gfx::Point& position);
98 // Used to correctly update the cursor when dragging over a guest, and to
99 // handle a race condition when dropping onto the guest that started the drag
100 // (the race is that the dragend message arrives before the drop message so
101 // the drop never takes place).
102 // crbug.com/233571
103 base::WeakPtr<BrowserPluginGuest> guest_dragging_over_;
105 // Pointer to the guest that started the drag, used to forward necessary drag
106 // status messages to the correct guest.
107 base::WeakPtr<BrowserPluginGuest> guest_started_drag_;
109 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_;
111 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder);
114 } // namespace content
116 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_