summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/webplugin_delegate_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r--chrome/renderer/webplugin_delegate_proxy.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc
index 86424eb..2ae6ec4 100644
--- a/chrome/renderer/webplugin_delegate_proxy.cc
+++ b/chrome/renderer/webplugin_delegate_proxy.cc
@@ -715,18 +715,18 @@ void WebPluginDelegateProxy::OnGetPluginElement(
}
void WebPluginDelegateProxy::OnSetCookie(const GURL& url,
- const GURL& policy_url,
+ const GURL& first_party_for_cookies,
const std::string& cookie) {
if (plugin_)
- plugin_->SetCookie(url, policy_url, cookie);
+ plugin_->SetCookie(url, first_party_for_cookies, cookie);
}
void WebPluginDelegateProxy::OnGetCookies(const GURL& url,
- const GURL& policy_url,
+ const GURL& first_party_for_cookies,
std::string* cookies) {
DCHECK(cookies);
if (plugin_)
- *cookies = plugin_->GetCookies(url, policy_url);
+ *cookies = plugin_->GetCookies(url, first_party_for_cookies);
}
void WebPluginDelegateProxy::OnShowModalHTMLDialog(