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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) | 560 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) |
561 | 561 |
562 // Message sent from the renderer to the browser to notify it of a | 562 // Message sent from the renderer to the browser to notify it of a |
563 // window.print() call which should cancel the prerender. The message is sent | 563 // window.print() call which should cancel the prerender. The message is sent |
564 // only when the renderer is prerendering. | 564 // only when the renderer is prerendering. |
565 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) | 565 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
566 | 566 |
567 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 567 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
568 // read/write operation from the DOM. | 568 // read/write operation from the DOM. |
569 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 569 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
570 GURL /* url */, | 570 GURL /* origin */, |
571 bool /* allowed */) | 571 bool /* allowed */) |
572 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 572 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
573 GURL /* url */, | 573 GURL /* origin */, |
574 bool /* allowed */) | 574 bool /* allowed */) |
575 | 575 |
576 // Sent when the renderer was prevented from displaying insecure content in | 576 // Sent when the renderer was prevented from displaying insecure content in |
577 // a secure page by a security policy. The page may appear incomplete. | 577 // a secure page by a security policy. The page may appear incomplete. |
578 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 578 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
579 | 579 |
580 // Sent when the renderer was prevented from running insecure content in | 580 // Sent when the renderer was prevented from running insecure content in |
581 // a secure origin by a security policy. The page may appear incomplete. | 581 // a secure origin by a security policy. The page may appear incomplete. |
582 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 582 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
583 | 583 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 // previous SetCookie message to be processed. | 616 // previous SetCookie message to be processed. |
617 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 617 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
618 GURL /* url */, | 618 GURL /* url */, |
619 GURL /* first_party_for_cookies */, | 619 GURL /* first_party_for_cookies */, |
620 std::string /* cookies */) | 620 std::string /* cookies */) |
621 | 621 |
622 // Provide the browser process with current renderer framerate. | 622 // Provide the browser process with current renderer framerate. |
623 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 623 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
624 int /* routing id */, | 624 int /* routing id */, |
625 float /* frames per second */) | 625 float /* frames per second */) |
OLD | NEW |