diff options
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon_host.cc | 3 | ||||
-rw-r--r-- | chrome/browser/notifications/balloon_host.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc index 9e9ba28..19414a0 100644 --- a/chrome/browser/notifications/balloon_host.cc +++ b/chrome/browser/notifications/balloon_host.cc @@ -81,11 +81,12 @@ void BalloonHost::RendererGone(RenderViewHost* render_view_host) { void BalloonHost::ProcessDOMUIMessage(const std::string& message, const Value* content, + const GURL& source_url, int request_id, bool has_callback) { if (extension_function_dispatcher_.get()) { extension_function_dispatcher_->HandleRequest( - message, content, request_id, has_callback); + message, content, source_url, request_id, has_callback); } } diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h index 42cd0e0..8cc397c 100644 --- a/chrome/browser/notifications/balloon_host.h +++ b/chrome/browser/notifications/balloon_host.h @@ -67,6 +67,7 @@ class BalloonHost : public RenderViewHostDelegate, } virtual void ProcessDOMUIMessage(const std::string& message, const Value* content, + const GURL& source_url, int request_id, bool has_callback); |