diff options
Diffstat (limited to 'content/public/browser/browser_plugin_guest_delegate.h')
-rw-r--r-- | content/public/browser/browser_plugin_guest_delegate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h index a9003ad..df98e4f 100644 --- a/content/public/browser/browser_plugin_guest_delegate.h +++ b/content/public/browser/browser_plugin_guest_delegate.h @@ -35,6 +35,12 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate { virtual void GuestProcessGone(base::TerminationStatus status) {} virtual bool HandleKeyboardEvent(const NativeWebKeyboardEvent& event); + + // Notification that the guest is no longer hung. + virtual void RendererResponsive() {} + + // Notification that the guest is hung. + virtual void RendererUnresponsive() {} }; } // namespace content |