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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 IPC_STRUCT_TRAITS_MEMBER(orientationType) | 172 IPC_STRUCT_TRAITS_MEMBER(orientationType) |
173 IPC_STRUCT_TRAITS_MEMBER(orientationAngle) | 173 IPC_STRUCT_TRAITS_MEMBER(orientationAngle) |
174 IPC_STRUCT_TRAITS_END() | 174 IPC_STRUCT_TRAITS_END() |
175 | 175 |
176 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) | 176 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) |
177 IPC_STRUCT_TRAITS_MEMBER(screen_info) | 177 IPC_STRUCT_TRAITS_MEMBER(screen_info) |
178 IPC_STRUCT_TRAITS_MEMBER(new_size) | 178 IPC_STRUCT_TRAITS_MEMBER(new_size) |
179 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) | 179 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) |
180 IPC_STRUCT_TRAITS_MEMBER(top_controls_shrink_blink_size) | 180 IPC_STRUCT_TRAITS_MEMBER(top_controls_shrink_blink_size) |
181 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) | 181 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) |
| 182 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) |
182 IPC_STRUCT_TRAITS_MEMBER(visible_viewport_size) | 183 IPC_STRUCT_TRAITS_MEMBER(visible_viewport_size) |
183 IPC_STRUCT_TRAITS_MEMBER(resizer_rect) | 184 IPC_STRUCT_TRAITS_MEMBER(resizer_rect) |
184 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen_granted) | 185 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen_granted) |
185 IPC_STRUCT_TRAITS_MEMBER(display_mode) | 186 IPC_STRUCT_TRAITS_MEMBER(display_mode) |
186 IPC_STRUCT_TRAITS_MEMBER(needs_resize_ack) | 187 IPC_STRUCT_TRAITS_MEMBER(needs_resize_ack) |
187 IPC_STRUCT_TRAITS_END() | 188 IPC_STRUCT_TRAITS_END() |
188 | 189 |
189 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) | 190 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) |
190 IPC_STRUCT_TRAITS_MEMBER(label) | 191 IPC_STRUCT_TRAITS_MEMBER(label) |
191 IPC_STRUCT_TRAITS_MEMBER(tool_tip) | 192 IPC_STRUCT_TRAITS_MEMBER(tool_tip) |
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1187 int /* y */) | 1188 int /* y */) |
1188 | 1189 |
1189 #elif defined(OS_MACOSX) | 1190 #elif defined(OS_MACOSX) |
1190 // Receives content of a web page as plain text. | 1191 // Receives content of a web page as plain text. |
1191 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1192 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1192 #endif | 1193 #endif |
1193 | 1194 |
1194 // Adding a new message? Stick to the sort order above: first platform | 1195 // Adding a new message? Stick to the sort order above: first platform |
1195 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1196 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1196 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1197 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |