| Index: chrome/browser/chrome_content_browser_client.h
|
| diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
|
| index bb8d55a829778ca7bf3ad4d59d03e0ab33866fb0..99ca7b5c37fa9d56e786520d6ee6f7a3e516c7df 100644
|
| --- a/chrome/browser/chrome_content_browser_client.h
|
| +++ b/chrome/browser/chrome_content_browser_client.h
|
| @@ -88,8 +88,9 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
|
| int render_view_id) OVERRIDE;
|
| virtual WebKit::WebNotificationPresenter::Permission
|
| CheckDesktopNotificationPermission(
|
| - const GURL& source_url,
|
| - const content::ResourceContext& context) OVERRIDE;
|
| + const GURL& source_origin,
|
| + const content::ResourceContext& context,
|
| + int render_process_id) OVERRIDE;
|
| virtual void ShowDesktopNotification(
|
| const DesktopNotificationHostMsg_Show_Params& params,
|
| int render_process_id,
|
| @@ -100,9 +101,10 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
|
| int render_view_id,
|
| int notification_id) OVERRIDE;
|
| virtual bool CanCreateWindow(
|
| - const GURL& source_url,
|
| + const GURL& source_origin,
|
| WindowContainerType container_type,
|
| - const content::ResourceContext& context) OVERRIDE;
|
| + const content::ResourceContext& context,
|
| + int render_process_id) OVERRIDE;
|
| virtual std::string GetWorkerProcessTitle(
|
| const GURL& url, const content::ResourceContext& context) OVERRIDE;
|
| virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE;
|
|
|