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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.h

Issue 11094080: Browser Plugin: More robust recovery from guest crash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_guest.h
diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h
index 3c8254fa1d3e396818ff939dda40ed133e27d069..9770c37629721294eb506cad5c1101881d5cfd21 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.h
+++ b/content/browser/browser_plugin/browser_plugin_guest.h
@@ -123,12 +123,6 @@ class CONTENT_EXPORT BrowserPluginGuest : public NotificationObserver,
void UpdateRect(RenderViewHost* render_view_host,
const ViewHostMsg_UpdateRect_Params& params);
void UpdateRectACK(int message_id, const gfx::Size& size);
- // Handles input event routed through the embedder (which is initiated in the
- // browser plugin (renderer side of the embedder)).
- void HandleInputEvent(RenderViewHost* render_view_host,
- const gfx::Rect& guest_rect,
- const WebKit::WebInputEvent& event,
- IPC::Message* reply_message);
// Overrides default ShowWidget message so we show them on the correct
// coordinates.
void ShowWidget(RenderViewHost* render_view_host,
@@ -167,6 +161,12 @@ class CONTENT_EXPORT BrowserPluginGuest : public NotificationObserver,
void Terminate();
// Overridden in tests.
+ // Handles input event routed through the embedder (which is initiated in the
+ // browser plugin (renderer side of the embedder)).
+ virtual void HandleInputEvent(RenderViewHost* render_view_host,
+ const gfx::Rect& guest_rect,
+ const WebKit::WebInputEvent& event,
+ IPC::Message* reply_message);
virtual bool ViewTakeFocus(bool reverse);
// If possible, navigate the guest to |relative_index| entries away from the
// current navigation entry.

Powered by Google App Engine
This is Rietveld 408576698