OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
9 #include "content/common/content_param_traits.h" | 9 #include "content/common/content_param_traits.h" |
10 #include "content/common/frame_message_enums.h" | 10 #include "content/common/frame_message_enums.h" |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 | 721 |
722 // Notifies that the initial empty document of a view has been accessed. | 722 // Notifies that the initial empty document of a view has been accessed. |
723 // After this, it is no longer safe to show a pending navigation's URL without | 723 // After this, it is no longer safe to show a pending navigation's URL without |
724 // making a URL spoof possible. | 724 // making a URL spoof possible. |
725 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidAccessInitialDocument) | 725 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidAccessInitialDocument) |
726 | 726 |
727 // Sent when the frame sets its opener to null, disowning it for the lifetime of | 727 // Sent when the frame sets its opener to null, disowning it for the lifetime of |
728 // the window. Sent for top-level frames. | 728 // the window. Sent for top-level frames. |
729 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisownOpener) | 729 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisownOpener) |
730 | 730 |
731 // Notifies the browser that a page id was assigned. | |
732 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidAssignPageId, | |
733 int32 /* page_id */) | |
734 | |
735 // Notifies the browser that sandbox flags have changed for a subframe of this | 731 // Notifies the browser that sandbox flags have changed for a subframe of this |
736 // frame. | 732 // frame. |
737 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, | 733 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, |
738 int32 /* subframe_routing_id */, | 734 int32 /* subframe_routing_id */, |
739 content::SandboxFlags /* updated_flags */) | 735 content::SandboxFlags /* updated_flags */) |
740 | 736 |
741 // Changes the title for the page in the UI when the page is navigated or the | 737 // Changes the title for the page in the UI when the page is navigated or the |
742 // title changes. Sent for top-level frames. | 738 // title changes. Sent for top-level frames. |
743 IPC_MESSAGE_ROUTED2(FrameHostMsg_UpdateTitle, | 739 IPC_MESSAGE_ROUTED2(FrameHostMsg_UpdateTitle, |
744 base::string16 /* title */, | 740 base::string16 /* title */, |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 FrameMsg_PostMessage_Params) | 965 FrameMsg_PostMessage_Params) |
970 | 966 |
971 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 967 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
972 | 968 |
973 // Message to show/hide a popup menu using native controls. | 969 // Message to show/hide a popup menu using native controls. |
974 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 970 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
975 FrameHostMsg_ShowPopup_Params) | 971 FrameHostMsg_ShowPopup_Params) |
976 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 972 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
977 | 973 |
978 #endif | 974 #endif |
OLD | NEW |