Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: content/browser/browser_plugin/browser_plugin_embedder.h

Issue 853333002: Browser Plugin: Make aware of focus direction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/DEPS ('k') | content/browser/browser_plugin/browser_plugin_embedder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // A BrowserPluginEmbedder handles messages coming from a BrowserPlugin's 5 // A BrowserPluginEmbedder handles messages coming from a BrowserPlugin's
6 // embedder that are not directed at any particular existing guest process. 6 // embedder that are not directed at any particular existing guest process.
7 // In the beginning, when a BrowserPlugin instance in the embedder renderer 7 // In the beginning, when a BrowserPlugin instance in the embedder renderer
8 // process requests an initial navigation, the WebContents for that renderer 8 // process requests an initial navigation, the WebContents for that renderer
9 // renderer creates a BrowserPluginEmbedder for itself. The 9 // renderer creates a BrowserPluginEmbedder for itself. The
10 // BrowserPluginEmbedder, in turn, forwards the requests to a 10 // BrowserPluginEmbedder, in turn, forwards the requests to a
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 const base::string16& search_text, 76 const base::string16& search_text,
77 const blink::WebFindOptions& options); 77 const blink::WebFindOptions& options);
78 78
79 private: 79 private:
80 explicit BrowserPluginEmbedder(WebContentsImpl* web_contents); 80 explicit BrowserPluginEmbedder(WebContentsImpl* web_contents);
81 81
82 BrowserPluginGuestManager* GetBrowserPluginGuestManager() const; 82 BrowserPluginGuestManager* GetBrowserPluginGuestManager() const;
83 83
84 void ClearGuestDragStateIfApplicable(); 84 void ClearGuestDragStateIfApplicable();
85 85
86 bool DidSendScreenRectsCallback(WebContents* guest_web_contents); 86 static bool DidSendScreenRectsCallback(WebContents* guest_web_contents);
87 87
88 bool UnlockMouseIfNecessaryCallback(bool* mouse_unlocked, WebContents* guest); 88 static bool UnlockMouseIfNecessaryCallback(bool* mouse_unlocked,
89 WebContents* guest);
89 90
90 bool FindInGuest(int request_id, 91 static bool FindInGuest(int request_id,
91 const base::string16& search_text, 92 const base::string16& search_text,
92 const blink::WebFindOptions& options, 93 const blink::WebFindOptions& options,
93 WebContents* guest); 94 WebContents* guest);
94
95 // Message handlers. 95 // Message handlers.
96 void OnAttach(int instance_id, 96 void OnAttach(int instance_id,
97 const BrowserPluginHostMsg_Attach_Params& params); 97 const BrowserPluginHostMsg_Attach_Params& params);
98 void OnPluginAtPositionResponse(int instance_id, 98 void OnPluginAtPositionResponse(int instance_id,
99 int request_id, 99 int request_id,
100 const gfx::Point& position); 100 const gfx::Point& position);
101 101
102 // Used to correctly update the cursor when dragging over a guest, and to 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 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 104 // (the race is that the dragend message arrives before the drop message so
105 // the drop never takes place). 105 // the drop never takes place).
106 // crbug.com/233571 106 // crbug.com/233571
107 base::WeakPtr<BrowserPluginGuest> guest_dragging_over_; 107 base::WeakPtr<BrowserPluginGuest> guest_dragging_over_;
108 108
109 // Pointer to the guest that started the drag, used to forward necessary drag 109 // Pointer to the guest that started the drag, used to forward necessary drag
110 // status messages to the correct guest. 110 // status messages to the correct guest.
111 base::WeakPtr<BrowserPluginGuest> guest_started_drag_; 111 base::WeakPtr<BrowserPluginGuest> guest_started_drag_;
112 112
113 // Keeps track of "dragend" state. 113 // Keeps track of "dragend" state.
114 bool guest_drag_ending_; 114 bool guest_drag_ending_;
115 115
116 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_; 116 base::WeakPtrFactory<BrowserPluginEmbedder> weak_ptr_factory_;
117 117
118 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder); 118 DISALLOW_COPY_AND_ASSIGN(BrowserPluginEmbedder);
119 }; 119 };
120 120
121 } // namespace content 121 } // namespace content
122 122
123 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_ 123 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_BROWSER_PLUGIN_EMBEDDER_H_
OLDNEW
« no previous file with comments | « content/browser/DEPS ('k') | content/browser/browser_plugin/browser_plugin_embedder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698