Chromium Code Reviews| Index: chrome/common/render_messages.h |
| diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h |
| index 7e09b6e5850b7cace20cfca8af3d54bb683871e2..14dfbfcf371d564e142078b1a6cd230c2590059f 100644 |
| --- a/chrome/common/render_messages.h |
| +++ b/chrome/common/render_messages.h |
| @@ -547,10 +547,10 @@ IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
| // Sent by the renderer to check if a URL has permission to trigger a clipboard |
| // read/write operation from the DOM. |
| IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
| - GURL /* url */, |
| + std::string /* origin */, |
|
Aaron Boodman
2011/10/20 06:53:51
Why string instead of GURL?
|
| bool /* allowed */) |
| IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
| - GURL /* url */, |
| + std::string /* origin */, |
| bool /* allowed */) |
| // Sent when the renderer was prevented from displaying insecure content in |