OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
540 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) | 540 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) |
541 | 541 |
542 // Message sent from the renderer to the browser to notify it of a | 542 // Message sent from the renderer to the browser to notify it of a |
543 // window.print() call which should cancel the prerender. The message is sent | 543 // window.print() call which should cancel the prerender. The message is sent |
544 // only when the renderer is prerendering. | 544 // only when the renderer is prerendering. |
545 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) | 545 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
546 | 546 |
547 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 547 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
548 // read/write operation from the DOM. | 548 // read/write operation from the DOM. |
549 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 549 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
550 GURL /* url */, | 550 std::string /* origin */, |
Aaron Boodman
2011/10/20 06:53:51
Why string instead of GURL?
| |
551 bool /* allowed */) | 551 bool /* allowed */) |
552 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 552 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
553 GURL /* url */, | 553 std::string /* origin */, |
554 bool /* allowed */) | 554 bool /* allowed */) |
555 | 555 |
556 // Sent when the renderer was prevented from displaying insecure content in | 556 // Sent when the renderer was prevented from displaying insecure content in |
557 // a secure page by a security policy. The page may appear incomplete. | 557 // a secure page by a security policy. The page may appear incomplete. |
558 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 558 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
559 | 559 |
560 // Sent when the renderer was prevented from running insecure content in | 560 // Sent when the renderer was prevented from running insecure content in |
561 // a secure origin by a security policy. The page may appear incomplete. | 561 // a secure origin by a security policy. The page may appear incomplete. |
562 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 562 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
563 | 563 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
596 // previous SetCookie message to be processed. | 596 // previous SetCookie message to be processed. |
597 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 597 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
598 GURL /* url */, | 598 GURL /* url */, |
599 GURL /* first_party_for_cookies */, | 599 GURL /* first_party_for_cookies */, |
600 std::string /* cookies */) | 600 std::string /* cookies */) |
601 | 601 |
602 // Provide the browser process with current renderer framerate. | 602 // Provide the browser process with current renderer framerate. |
603 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 603 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
604 int /* routing id */, | 604 int /* routing id */, |
605 float /* frames per second */) | 605 float /* frames per second */) |
OLD | NEW |