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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 | 866 |
867 // Notifies the browser that a document has been loaded. | 867 // Notifies the browser that a document has been loaded. |
868 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad) | 868 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad) |
869 | 869 |
870 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError, | 870 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError, |
871 GURL /* validated_url */, | 871 GURL /* validated_url */, |
872 int /* error_code */, | 872 int /* error_code */, |
873 base::string16 /* error_description */, | 873 base::string16 /* error_description */, |
874 bool /* was_ignored_by_handler */) | 874 bool /* was_ignored_by_handler */) |
875 | 875 |
876 // Sent when the renderer decides to ignore a navigation. | |
877 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDropNavigation) | |
878 | |
879 // Sent when the renderer starts loading the page. |to_different_document| will | 876 // Sent when the renderer starts loading the page. |to_different_document| will |
880 // be true unless the load is a fragment navigation, or triggered by | 877 // be true unless the load is a fragment navigation, or triggered by |
881 // history.pushState/replaceState. | 878 // history.pushState/replaceState. |
882 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, | 879 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, |
883 bool /* to_different_document */) | 880 bool /* to_different_document */) |
884 | 881 |
885 // Sent when the renderer is done loading a page. | 882 // Sent when the renderer is done loading a page. |
886 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) | 883 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) |
887 | 884 |
888 // Notifies the browser that this frame has new session history information. | 885 // Notifies the browser that this frame has new session history information. |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1367 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1364 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1368 FrameHostMsg_ShowPopup_Params) | 1365 FrameHostMsg_ShowPopup_Params) |
1369 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1366 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1370 | 1367 |
1371 #endif | 1368 #endif |
1372 | 1369 |
1373 // Adding a new message? Stick to the sort order above: first platform | 1370 // Adding a new message? Stick to the sort order above: first platform |
1374 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1371 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1375 // platform independent FrameHostMsg, then ifdefs for platform specific | 1372 // platform independent FrameHostMsg, then ifdefs for platform specific |
1376 // FrameHostMsg. | 1373 // FrameHostMsg. |
OLD | NEW |