diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 19:31:40 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-18 19:31:40 +0000 |
commit | 79e6a403ab654bcacc8b8cfff74514e06417f4ad (patch) | |
tree | 65ce1c86d64eadfee67b272651627755cf8cd2f6 /webkit/glue/webplugin.h | |
parent | 5ead1637bd35e7c242f21ea212e3b494ad0facdc (diff) | |
download | chromium_src-79e6a403ab654bcacc8b8cfff74514e06417f4ad.zip chromium_src-79e6a403ab654bcacc8b8cfff74514e06417f4ad.tar.gz chromium_src-79e6a403ab654bcacc8b8cfff74514e06417f4ad.tar.bz2 |
Rename policy_url to first_party_for_cookies in cookie-related code.
R=abarth
BUG=25133
TEST=none. A cosmetic change.
Review URL: http://codereview.chromium.org/403011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin.h')
-rw-r--r-- | webkit/glue/webplugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index b301dde..194b99d 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -79,10 +79,10 @@ class WebPlugin { // Cookies virtual void SetCookie(const GURL& url, - const GURL& policy_url, + const GURL& first_party_for_cookies, const std::string& cookie) = 0; virtual std::string GetCookies(const GURL& url, - const GURL& policy_url) = 0; + const GURL& first_party_for_cookies) = 0; // Shows a modal HTML dialog containing the given URL. json_arguments are // passed to the dialog via the DOM 'window.chrome.dialogArguments', and the |