| 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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 int /* page_id */, | 649 int /* page_id */, |
| 650 bool /* result */) | 650 bool /* result */) |
| 651 | 651 |
| 652 // Sent by the Instant preview asking to show itself with the given height. | 652 // Sent by the Instant preview asking to show itself with the given height. |
| 653 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, | 653 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, |
| 654 int /* page_id */, | 654 int /* page_id */, |
| 655 InstantShownReason /* reason */, | 655 InstantShownReason /* reason */, |
| 656 int /* height */, | 656 int /* height */, |
| 657 InstantSizeUnits /* units */) | 657 InstantSizeUnits /* units */) |
| 658 | 658 |
| 659 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_StartCapturingKeyStrokes, |
| 660 int /* page_id */) |
| 661 |
| 662 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_StopCapturingKeyStrokes, |
| 663 int /* page_id */) |
| 664 |
| 659 // The currently displayed PDF has an unsupported feature. | 665 // The currently displayed PDF has an unsupported feature. |
| 660 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) | 666 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) |
| 661 | 667 |
| 662 // This message indicates the error appeared in the frame. | 668 // This message indicates the error appeared in the frame. |
| 663 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, | 669 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, |
| 664 int /* error */) | 670 int /* error */) |
| 665 | 671 |
| 666 // This message indicates the monitored frame loading had completed. | 672 // This message indicates the monitored frame loading had completed. |
| 667 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) | 673 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) |
| 668 | 674 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 679 // previous SetCookie message to be processed. | 685 // previous SetCookie message to be processed. |
| 680 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 686 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 681 GURL /* url */, | 687 GURL /* url */, |
| 682 GURL /* first_party_for_cookies */, | 688 GURL /* first_party_for_cookies */, |
| 683 std::string /* cookies */) | 689 std::string /* cookies */) |
| 684 | 690 |
| 685 // Provide the browser process with current renderer framerate. | 691 // Provide the browser process with current renderer framerate. |
| 686 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 692 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 687 int /* routing id */, | 693 int /* routing id */, |
| 688 float /* frames per second */) | 694 float /* frames per second */) |
| OLD | NEW |