diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 17:02:36 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 17:02:36 +0000 |
commit | 6b6db57f06b8610f211d7fd8e5122447adf1fa71 (patch) | |
tree | f7b9adc85a242f59d8ebb50667035f0620694dcd /chrome/browser/notifications/desktop_notification_service.h | |
parent | 283b6f77716b240ea352d0d52aa0613ce0a02a00 (diff) | |
download | chromium_src-6b6db57f06b8610f211d7fd8e5122447adf1fa71.zip chromium_src-6b6db57f06b8610f211d7fd8e5122447adf1fa71.tar.gz chromium_src-6b6db57f06b8610f211d7fd8e5122447adf1fa71.tar.bz2 |
Correctly route the notifications permission-request-complete callback to the process/route which generated it. It might not be the same tab that's showing the infobar, particularly if it comes from an extension.
BUG=26859
TEST=request notifications permission from an extension and allow it.
Review URL: http://codereview.chromium.org/378005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications/desktop_notification_service.h')
-rw-r--r-- | chrome/browser/notifications/desktop_notification_service.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/notifications/desktop_notification_service.h b/chrome/browser/notifications/desktop_notification_service.h index 1e1fb16..86ad6d1 100644 --- a/chrome/browser/notifications/desktop_notification_service.h +++ b/chrome/browser/notifications/desktop_notification_service.h @@ -33,7 +33,10 @@ class DesktopNotificationService { // Requests permission (using an info-bar) for a given origin. // |callback_context| contains an opaque value to pass back to the // requesting process when the info-bar finishes. - void RequestPermission(const GURL& origin, int callback_context); + void RequestPermission(const GURL& origin, + int process_id, + int route_id, + int callback_context); // Takes a notification object and shows it in the UI. void ShowNotification(const Notification& notification); |