Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index 6900ebe87361a5ba56eeab3396402e97a5f94d41..f894f373870041d3fd5bc7d4bc9ac69c6e474f54 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -791,12 +791,13 @@ void ChromeContentBrowserClient::GetStoragePartitionConfigForSite( |
} |
content::WebContentsViewDelegate* |
- ChromeContentBrowserClient::GetWebContentsViewDelegate( |
- content::WebContents* web_contents) { |
+ChromeContentBrowserClient::GetWebContentsViewDelegate( |
+ content::WebContents* web_contents, |
+ gfx::NativeView context) { |
#if defined(USE_ATHENA) |
- return athena::CreateWebContentsViewDelegate(web_contents); |
+ return athena::CreateWebContentsViewDelegate(web_contents, context); |
#else |
- return chrome::CreateWebContentsViewDelegate(web_contents); |
+ return chrome::CreateWebContentsViewDelegate(web_contents, context); |
#endif |
} |