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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 IPC_STRUCT_TRAITS_MEMBER(orientationType) | 173 IPC_STRUCT_TRAITS_MEMBER(orientationType) |
174 IPC_STRUCT_TRAITS_MEMBER(orientationAngle) | 174 IPC_STRUCT_TRAITS_MEMBER(orientationAngle) |
175 IPC_STRUCT_TRAITS_END() | 175 IPC_STRUCT_TRAITS_END() |
176 | 176 |
177 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) | 177 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) |
178 IPC_STRUCT_TRAITS_MEMBER(screen_info) | 178 IPC_STRUCT_TRAITS_MEMBER(screen_info) |
179 IPC_STRUCT_TRAITS_MEMBER(new_size) | 179 IPC_STRUCT_TRAITS_MEMBER(new_size) |
180 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) | 180 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) |
181 IPC_STRUCT_TRAITS_MEMBER(top_controls_shrink_blink_size) | 181 IPC_STRUCT_TRAITS_MEMBER(top_controls_shrink_blink_size) |
182 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) | 182 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) |
| 183 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) |
183 IPC_STRUCT_TRAITS_MEMBER(visible_viewport_size) | 184 IPC_STRUCT_TRAITS_MEMBER(visible_viewport_size) |
184 IPC_STRUCT_TRAITS_MEMBER(resizer_rect) | 185 IPC_STRUCT_TRAITS_MEMBER(resizer_rect) |
185 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen_granted) | 186 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen_granted) |
186 IPC_STRUCT_TRAITS_MEMBER(display_mode) | 187 IPC_STRUCT_TRAITS_MEMBER(display_mode) |
187 IPC_STRUCT_TRAITS_MEMBER(needs_resize_ack) | 188 IPC_STRUCT_TRAITS_MEMBER(needs_resize_ack) |
188 IPC_STRUCT_TRAITS_END() | 189 IPC_STRUCT_TRAITS_END() |
189 | 190 |
190 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) | 191 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) |
191 IPC_STRUCT_TRAITS_MEMBER(label) | 192 IPC_STRUCT_TRAITS_MEMBER(label) |
192 IPC_STRUCT_TRAITS_MEMBER(tool_tip) | 193 IPC_STRUCT_TRAITS_MEMBER(tool_tip) |
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1175 int /* y */) | 1176 int /* y */) |
1176 | 1177 |
1177 #elif defined(OS_MACOSX) | 1178 #elif defined(OS_MACOSX) |
1178 // Receives content of a web page as plain text. | 1179 // Receives content of a web page as plain text. |
1179 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1180 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1180 #endif | 1181 #endif |
1181 | 1182 |
1182 // Adding a new message? Stick to the sort order above: first platform | 1183 // Adding a new message? Stick to the sort order above: first platform |
1183 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1184 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1184 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1185 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |