diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-23 18:11:10 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-23 18:11:10 +0000 |
commit | cfd7332188b64787a9cb2b110957c0eb60b806a8 (patch) | |
tree | bd5072b446490dc3266dff44a627416f54404eb8 /webkit/tools/test_shell/test_worker | |
parent | d62c805ec92a9e00bfd97fc5a4d35103a8e89380 (diff) | |
download | chromium_src-cfd7332188b64787a9cb2b110957c0eb60b806a8.zip chromium_src-cfd7332188b64787a9cb2b110957c0eb60b806a8.tar.gz chromium_src-cfd7332188b64787a9cb2b110957c0eb60b806a8.tar.bz2 |
Rename |policy_url| to |first_party_for_cookies|. This now matches the WebKit name for this piece of data.
R=jackson
BUG=None
TEST=No behavior change
Review URL: http://codereview.chromium.org/115743
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_worker')
-rw-r--r-- | webkit/tools/test_shell/test_worker/test_worker_main.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/webkit/tools/test_shell/test_worker/test_worker_main.cc b/webkit/tools/test_shell/test_worker/test_worker_main.cc index 50185b9..366b217 100644 --- a/webkit/tools/test_shell/test_worker/test_worker_main.cc +++ b/webkit/tools/test_shell/test_worker/test_worker_main.cc @@ -60,13 +60,14 @@ class WorkerWebKitClientImpl : public webkit_glue::WebKitClientImpl { } virtual void setCookies(const WebKit::WebURL& url, - const WebKit::WebURL& policy_url, + const WebKit::WebURL& first_party_for_cookies, const WebKit::WebString& value) { NOTREACHED(); } - virtual WebKit::WebString cookies(const WebKit::WebURL& url, - const WebKit::WebURL& policy_url) { + virtual WebKit::WebString cookies( + const WebKit::WebURL& url, + const WebKit::WebURL& first_party_for_cookies) { NOTREACHED(); return WebKit::WebString(); } @@ -122,7 +123,7 @@ __attribute__((visibility("default"))) ResourceLoaderBridge* ResourceLoaderBridge::Create( const std::string& method, const GURL& url, - const GURL& policy_url, + const GURL& first_party_for_cookies, const GURL& referrer, const std::string& frame_origin, const std::string& main_frame_origin, |