| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 // Similar to ViewHostMsg_CreateWindow, except used for sub-widgets, like | 1076 // Similar to ViewHostMsg_CreateWindow, except used for sub-widgets, like |
| 1077 // <select> dropdowns. This message is sent to the TabContents that | 1077 // <select> dropdowns. This message is sent to the TabContents that |
| 1078 // contains the widget being created. | 1078 // contains the widget being created. |
| 1079 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateWidget, | 1079 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateWidget, |
| 1080 int /* opener_id */, | 1080 int /* opener_id */, |
| 1081 WebKit::WebPopupType /* popup type */, | 1081 WebKit::WebPopupType /* popup type */, |
| 1082 int /* route_id */) | 1082 int /* route_id */) |
| 1083 | 1083 |
| 1084 // Similar to ViewHostMsg_CreateWidget except the widget is a full screen | 1084 // Similar to ViewHostMsg_CreateWidget except the widget is a full screen |
| 1085 // window. | 1085 // window. |
| 1086 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateFullscreenWidget, | 1086 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateFullscreenWidget, |
| 1087 int /* opener_id */, | 1087 int /* opener_id */, |
| 1088 WebKit::WebPopupType /* popup type */, | |
| 1089 int /* route_id */) | 1088 int /* route_id */) |
| 1090 | 1089 |
| 1091 // These three messages are sent to the parent RenderViewHost to display the | 1090 // These three messages are sent to the parent RenderViewHost to display the |
| 1092 // page/widget that was created by | 1091 // page/widget that was created by |
| 1093 // CreateWindow/CreateWidget/CreateFullscreenWidget. routing_id | 1092 // CreateWindow/CreateWidget/CreateFullscreenWidget. routing_id |
| 1094 // refers to the id that was returned from the Create message above. | 1093 // refers to the id that was returned from the Create message above. |
| 1095 // The initial_position parameter is a rectangle in screen coordinates. | 1094 // The initial_position parameter is a rectangle in screen coordinates. |
| 1096 // | 1095 // |
| 1097 // FUTURE: there will probably be flags here to control if the result is | 1096 // FUTURE: there will probably be flags here to control if the result is |
| 1098 // in a new window. | 1097 // in a new window. |
| (...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2521 // The currently displayed PDF has an unsupported feature. | 2520 // The currently displayed PDF has an unsupported feature. |
| 2522 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) | 2521 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature) |
| 2523 | 2522 |
| 2524 // JavaScript related messages ----------------------------------------------- | 2523 // JavaScript related messages ----------------------------------------------- |
| 2525 | 2524 |
| 2526 // Notify the JavaScript engine in the render to change its parameters | 2525 // Notify the JavaScript engine in the render to change its parameters |
| 2527 // while performing stress testing. | 2526 // while performing stress testing. |
| 2528 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2527 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2529 int /* cmd */, | 2528 int /* cmd */, |
| 2530 int /* param */) | 2529 int /* param */) |
| OLD | NEW |