| Index: chrome/common/render_messages.h
|
| ===================================================================
|
| --- chrome/common/render_messages.h (revision 98657)
|
| +++ chrome/common/render_messages.h (working copy)
|
| @@ -532,3 +532,19 @@
|
| // The currently displayed PDF has an unsupported feature.
|
| IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
|
|
|
| +// The following messages are used to set and get cookies for ChromeFrame
|
| +// processes.
|
| +// Used to set a cookie. The cookie is set asynchronously, but will be
|
| +// available to a subsequent ChromeViewHostMsg_GetCookies request.
|
| +IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetCookie,
|
| + GURL /* url */,
|
| + GURL /* first_party_for_cookies */,
|
| + std::string /* cookie */)
|
| +
|
| +// Used to get cookies for the given URL. This may block waiting for a
|
| +// previous SetCookie message to be processed.
|
| +IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
|
| + GURL /* url */,
|
| + GURL /* first_party_for_cookies */,
|
| + std::string /* cookies */)
|
| +
|
|
|