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 // Send by the renderer to check if the current tab is off the record. | |
594 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsOffTheRecord, | |
595 bool /* is_off_the_record */) | |
596 | |
brettw
2012/08/02 19:50:47
Got extra blank line.
jvoung (off chromium)
2012/08/02 22:26:08
Removed.
| |
597 | |
593 // Sent when the renderer was prevented from displaying insecure content in | 598 // Sent when the renderer was prevented from displaying insecure content in |
594 // a secure page by a security policy. The page may appear incomplete. | 599 // a secure page by a security policy. The page may appear incomplete. |
595 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 600 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
596 | 601 |
597 // Sent when the renderer was prevented from running insecure content in | 602 // Sent when the renderer was prevented from running insecure content in |
598 // a secure origin by a security policy. The page may appear incomplete. | 603 // a secure origin by a security policy. The page may appear incomplete. |
599 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) | 604 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockRunningInsecureContent) |
600 | 605 |
601 // Message sent from renderer to the browser when the element that is focused | 606 // 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. | 607 // 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. | 641 // previous SetCookie message to be processed. |
637 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 642 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
638 GURL /* url */, | 643 GURL /* url */, |
639 GURL /* first_party_for_cookies */, | 644 GURL /* first_party_for_cookies */, |
640 std::string /* cookies */) | 645 std::string /* cookies */) |
641 | 646 |
642 // Provide the browser process with current renderer framerate. | 647 // Provide the browser process with current renderer framerate. |
643 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 648 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
644 int /* routing id */, | 649 int /* routing id */, |
645 float /* frames per second */) | 650 float /* frames per second */) |
OLD | NEW |