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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) | 573 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) |
574 | 574 |
575 // Message sent from the renderer to the browser to notify it of a | 575 // Message sent from the renderer to the browser to notify it of a |
576 // window.print() call which should cancel the prerender. The message is sent | 576 // window.print() call which should cancel the prerender. The message is sent |
577 // only when the renderer is prerendering. | 577 // only when the renderer is prerendering. |
578 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) | 578 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
579 | 579 |
580 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 580 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
581 // read/write operation from the DOM. | 581 // read/write operation from the DOM. |
582 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 582 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
583 GURL /* url */, | 583 GURL /* origin */, |
584 bool /* allowed */) | 584 bool /* allowed */) |
585 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 585 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
586 GURL /* url */, | 586 GURL /* origin */, |
587 bool /* allowed */) | 587 bool /* allowed */) |
588 | 588 |
589 // Sent when the renderer was prevented from displaying insecure content in | 589 // Sent when the renderer was prevented from displaying insecure content in |
590 // a secure page by a security policy. The page may appear incomplete. | 590 // a secure page by a security policy. The page may appear incomplete. |
591 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 591 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
592 | 592 |
593 // Sent when the renderer was prevented from running insecure content in | 593 // Sent when the renderer was prevented from running insecure content in |
594 // a secure origin by a security policy. The page may appear incomplete. | 594 // a secure origin by a security policy. The page may appear incomplete. |
595 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 595 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
596 | 596 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 // previous SetCookie message to be processed. | 632 // previous SetCookie message to be processed. |
633 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 633 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
634 GURL /* url */, | 634 GURL /* url */, |
635 GURL /* first_party_for_cookies */, | 635 GURL /* first_party_for_cookies */, |
636 std::string /* cookies */) | 636 std::string /* cookies */) |
637 | 637 |
638 // Provide the browser process with current renderer framerate. | 638 // Provide the browser process with current renderer framerate. |
639 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 639 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
640 int /* routing id */, | 640 int /* routing id */, |
641 float /* frames per second */) | 641 float /* frames per second */) |
OLD | NEW |