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/renderer/notification_provider.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/renderer/notification_provider.h')
-rw-r--r-- | chrome/renderer/notification_provider.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/renderer/notification_provider.h b/chrome/renderer/notification_provider.h index d8e811e..ccd6cf3 100644 --- a/chrome/renderer/notification_provider.h +++ b/chrome/renderer/notification_provider.h @@ -47,6 +47,7 @@ class NotificationProvider : public WebKit::WebNotificationPresenter { void OnDisplay(int id); void OnError(int id, const WebKit::WebString& message); void OnClose(int id, bool by_user); + void OnClick(int id); void OnPermissionRequestComplete(int id); bool Send(IPC::Message* message); |