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