diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-11 16:41:57 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-11 16:41:57 +0000 |
commit | 3c231c59e0a76b0325bcb7285fffeb8c59ad169c (patch) | |
tree | b1d5de3733aa549a5abf6080d0e4b1faa17f3889 /chrome/common/render_messages_internal.h | |
parent | 1bc5ec5d6fca5de3d3604e21b4717a210221f305 (diff) | |
download | chromium_src-3c231c59e0a76b0325bcb7285fffeb8c59ad169c.zip chromium_src-3c231c59e0a76b0325bcb7285fffeb8c59ad169c.tar.gz chromium_src-3c231c59e0a76b0325bcb7285fffeb8c59ad169c.tar.bz2 |
Change ViewHostMsg_SetCookie to be routed so we can show the blocked cookie
notification.
We get the RenderView identifier by looking at the current WebFrame.
R=jorlow
BUG=34573
TEST=none
Review URL: http://codereview.chromium.org/596050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38777 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 591dbb1..b985c96 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -1088,10 +1088,10 @@ IPC_BEGIN_MESSAGES(ViewHost) // Used to set a cookie. The cookie is set asynchronously, but will be // available to a subsequent ViewHostMsg_GetCookies request. - IPC_MESSAGE_CONTROL3(ViewHostMsg_SetCookie, - GURL /* url */, - GURL /* first_party_for_cookies */, - std::string /* cookie */) + IPC_MESSAGE_ROUTED3(ViewHostMsg_SetCookie, + GURL /* url */, + GURL /* first_party_for_cookies */, + std::string /* cookie */) // Used to get cookies for the given URL IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_GetCookies, |