OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1902 | 1902 |
1903 IPC_SYNC_MESSAGE_ROUTED4_1(ViewHostMsg_ShowModalHTMLDialog, | 1903 IPC_SYNC_MESSAGE_ROUTED4_1(ViewHostMsg_ShowModalHTMLDialog, |
1904 GURL /* url */, | 1904 GURL /* url */, |
1905 int /* width */, | 1905 int /* width */, |
1906 int /* height */, | 1906 int /* height */, |
1907 std::string /* json_arguments */, | 1907 std::string /* json_arguments */, |
1908 std::string /* json_retval */) | 1908 std::string /* json_retval */) |
1909 | 1909 |
1910 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidGetApplicationInfo, | 1910 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidGetApplicationInfo, |
1911 int32 /* page_id */, | 1911 int32 /* page_id */, |
1912 webkit_glue::WebApplicationInfo) | 1912 WebApplicationInfo) |
1913 | 1913 |
1914 // Provides the result from running OnMsgShouldClose. |proceed| matches the | 1914 // Provides the result from running OnMsgShouldClose. |proceed| matches the |
1915 // return value of the the frame's shouldClose method (which includes the | 1915 // return value of the the frame's shouldClose method (which includes the |
1916 // onbeforeunload handler): true if the user decided to proceed with leaving | 1916 // onbeforeunload handler): true if the user decided to proceed with leaving |
1917 // the page. | 1917 // the page. |
1918 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK, | 1918 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK, |
1919 bool /* proceed */) | 1919 bool /* proceed */) |
1920 | 1920 |
1921 // Indicates that the current page has been closed, after a ClosePage | 1921 // Indicates that the current page has been closed, after a ClosePage |
1922 // message. The parameters are just echoed from the ClosePage request. | 1922 // message. The parameters are just echoed from the ClosePage request. |
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3074 base::PlatformFileInfo, /* info */ | 3074 base::PlatformFileInfo, /* info */ |
3075 base::PlatformFileError /* error_code */) | 3075 base::PlatformFileError /* error_code */) |
3076 | 3076 |
3077 // Get the directory's contents. | 3077 // Get the directory's contents. |
3078 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3078 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
3079 FilePath /* path */, | 3079 FilePath /* path */, |
3080 PepperDirContents, /* contents */ | 3080 PepperDirContents, /* contents */ |
3081 base::PlatformFileError /* error_code */) | 3081 base::PlatformFileError /* error_code */) |
3082 | 3082 |
3083 IPC_END_MESSAGES(ViewHost) | 3083 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |