summaryrefslogtreecommitdiffstats
path: root/content/public/browser/browser_plugin_guest_delegate.h
diff options
context:
space:
mode:
authorfsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-26 06:18:01 +0000
committerfsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-26 06:18:01 +0000
commitfcf5a7a76685e63dc5520c57d335f685697dbda6 (patch)
tree975bbba4cf45d0837a0a579944100082f7e4ff0e /content/public/browser/browser_plugin_guest_delegate.h
parent9e70b5725059f16de3d39f4e4937d1e7d8dfc6cb (diff)
downloadchromium_src-fcf5a7a76685e63dc5520c57d335f685697dbda6.zip
chromium_src-fcf5a7a76685e63dc5520c57d335f685697dbda6.tar.gz
chromium_src-fcf5a7a76685e63dc5520c57d335f685697dbda6.tar.bz2
<webview>: Move responsive/unresponsive events from content to chrome
BUG=166165 TBR=cdn@chromium.org for deleting IPCs in browser_plugin_messages.h Review URL: https://chromiumcodereview.appspot.com/18716002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213772 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/browser_plugin_guest_delegate.h')
-rw-r--r--content/public/browser/browser_plugin_guest_delegate.h6
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