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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1182 int /* y */) | 1183 int /* y */) |
1183 | 1184 |
1184 #elif defined(OS_MACOSX) | 1185 #elif defined(OS_MACOSX) |
1185 // Receives content of a web page as plain text. | 1186 // Receives content of a web page as plain text. |
1186 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1187 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1187 #endif | 1188 #endif |
1188 | 1189 |
1189 // Adding a new message? Stick to the sort order above: first platform | 1190 // Adding a new message? Stick to the sort order above: first platform |
1190 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1191 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1191 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1192 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |