| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 | 583 |
| 584 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 584 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
| 585 // read/write operation from the DOM. | 585 // read/write operation from the DOM. |
| 586 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 586 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
| 587 GURL /* origin */, | 587 GURL /* origin */, |
| 588 bool /* allowed */) | 588 bool /* allowed */) |
| 589 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, | 589 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardWrite, |
| 590 GURL /* origin */, | 590 GURL /* origin */, |
| 591 bool /* allowed */) | 591 bool /* allowed */) |
| 592 | 592 |
| 593 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsOffTheRecord, |
| 594 bool /* is_off_the_record */) |
| 595 |
| 596 |
| 593 // Sent when the renderer was prevented from displaying insecure content in | 597 // Sent when the renderer was prevented from displaying insecure content in |
| 594 // a secure page by a security policy. The page may appear incomplete. | 598 // a secure page by a security policy. The page may appear incomplete. |
| 595 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 599 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
| 596 | 600 |
| 597 // Sent when the renderer was prevented from running insecure content in | 601 // Sent when the renderer was prevented from running insecure content in |
| 598 // a secure origin by a security policy. The page may appear incomplete. | 602 // a secure origin by a security policy. The page may appear incomplete. |
| 599 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 603 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
| 600 | 604 |
| 601 // Message sent from renderer to the browser when the element that is focused | 605 // Message sent from renderer to the browser when the element that is focused |
| 602 // and currently accepts keyboard input inside the webpage has been touched. | 606 // and currently accepts keyboard input inside the webpage has been touched. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 // previous SetCookie message to be processed. | 640 // previous SetCookie message to be processed. |
| 637 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 641 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 638 GURL /* url */, | 642 GURL /* url */, |
| 639 GURL /* first_party_for_cookies */, | 643 GURL /* first_party_for_cookies */, |
| 640 std::string /* cookies */) | 644 std::string /* cookies */) |
| 641 | 645 |
| 642 // Provide the browser process with current renderer framerate. | 646 // Provide the browser process with current renderer framerate. |
| 643 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 647 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 644 int /* routing id */, | 648 int /* routing id */, |
| 645 float /* frames per second */) | 649 float /* frames per second */) |
| OLD | NEW |