diff options
author | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-22 08:30:33 +0000 |
---|---|---|
committer | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-22 08:30:33 +0000 |
commit | 029bd94e73652b6327fd77a65ec619ffdb1f325b (patch) | |
tree | e1baa98d23524dcae39257bc47abae20b2952e3e /ppapi | |
parent | 1a843b8f84f781c1079e36de77fb986fb7a2c569 (diff) | |
download | chromium_src-029bd94e73652b6327fd77a65ec619ffdb1f325b.zip chromium_src-029bd94e73652b6327fd77a65ec619ffdb1f325b.tar.gz chromium_src-029bd94e73652b6327fd77a65ec619ffdb1f325b.tar.bz2 |
Add two new debug URLs for Pepper Flash:
- chrome://ppapiflashcrash
- chrome://ppapiflashhang
TEST=none
BUG=169915
Review URL: https://chromiumcodereview.appspot.com/11883026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177983 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/ppapi_messages.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h index 3671655..7347437 100644 --- a/ppapi/proxy/ppapi_messages.h +++ b/ppapi/proxy/ppapi_messages.h @@ -314,6 +314,12 @@ IPC_MESSAGE_CONTROL4(PpapiMsg_CreateNaClChannel, bool /* incognito */, ppapi::proxy::SerializedHandle /* channel_handle */) +// Instructs the plugin process to crash. +IPC_MESSAGE_CONTROL0(PpapiMsg_Crash) + +// Instructs the plugin process to hang. +IPC_MESSAGE_CONTROL0(PpapiMsg_Hang) + // Each plugin may be referenced by multiple renderers. We need the instance // IDs to be unique within a plugin, despite coming from different renderers, // and unique within a renderer, despite going to different plugins. This means |