summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_internal.h
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 02:27:34 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 02:27:34 +0000
commit041b0bbba0efec8bd026aee1165e4be697cbf8ce (patch)
tree8c9ee6806d964c45252a56f911f3c43491a38fc4 /chrome/common/render_messages_internal.h
parent4eb0ece6c4b380e6af418ab15beda8c13ed08817 (diff)
downloadchromium_src-041b0bbba0efec8bd026aee1165e4be697cbf8ce.zip
chromium_src-041b0bbba0efec8bd026aee1165e4be697cbf8ce.tar.gz
chromium_src-041b0bbba0efec8bd026aee1165e4be697cbf8ce.tar.bz2
Use an explicit boolean has_new_first_party_for_cookies instead
of an empty, invalid URL to indicate whether the first party for cookies URL needs changing when following a redirect. R=eroman BUG=25133 TEST=none Review URL: http://codereview.chromium.org/405011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32260 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r--chrome/common/render_messages_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 552d4cd..6da2ec7 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -1054,8 +1054,9 @@ IPC_BEGIN_MESSAGES(ViewHost)
// Follows a redirect that occured for the resource request with the ID given
// as the parameter.
- IPC_MESSAGE_ROUTED2(ViewHostMsg_FollowRedirect,
+ IPC_MESSAGE_ROUTED3(ViewHostMsg_FollowRedirect,
int /* request_id */,
+ bool /* has_new_first_party_for_cookies */,
GURL /* new_first_party_for_cookies */)
// Makes a synchronous resource request via the browser.