diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 05:50:35 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 05:50:35 +0000 |
commit | 0ff62860f0db277412f8c56b43cc65356af6d820 (patch) | |
tree | 3c1d21cb3a1640b95e74fd0f919c3cc3681238e8 /chrome/common/render_messages_internal.h | |
parent | bcb9a7c0f0084dd42e3db746ed74bfae432ffb55 (diff) | |
download | chromium_src-0ff62860f0db277412f8c56b43cc65356af6d820.zip chromium_src-0ff62860f0db277412f8c56b43cc65356af6d820.tar.gz chromium_src-0ff62860f0db277412f8c56b43cc65356af6d820.tar.bz2 |
Implement the plumbing to deliver click events from the notification balloon view to the javascript object.
BUG=51226
TEST=use notifications with an onclick event
Review URL: http://codereview.chromium.org/3273007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 1becc31..e7448d9 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -805,6 +805,10 @@ IPC_BEGIN_MESSAGES(View) int /* notification_id */, bool /* by_user */) + // Informs the renderer that one of its notifications was clicked on. + IPC_MESSAGE_ROUTED1(ViewMsg_PostClickToNotificationObject, + int /* notification_id */) + // Informs the renderer that the one if its notifications has closed. IPC_MESSAGE_ROUTED1(ViewMsg_PermissionRequestDone, int /* request_id */) |