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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 IPC_STRUCT_TRAITS_MEMBER(screenOrientationAngle) | 164 IPC_STRUCT_TRAITS_MEMBER(screenOrientationAngle) |
165 IPC_STRUCT_TRAITS_MEMBER(screenOrientationType) | 165 IPC_STRUCT_TRAITS_MEMBER(screenOrientationType) |
166 IPC_STRUCT_TRAITS_END() | 166 IPC_STRUCT_TRAITS_END() |
167 | 167 |
168 IPC_STRUCT_TRAITS_BEGIN(content::ScreenInfo) | 168 IPC_STRUCT_TRAITS_BEGIN(content::ScreenInfo) |
169 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) | 169 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) |
170 IPC_STRUCT_TRAITS_MEMBER(icc_profile) | 170 IPC_STRUCT_TRAITS_MEMBER(icc_profile) |
171 IPC_STRUCT_TRAITS_MEMBER(depth) | 171 IPC_STRUCT_TRAITS_MEMBER(depth) |
172 IPC_STRUCT_TRAITS_MEMBER(depth_per_component) | 172 IPC_STRUCT_TRAITS_MEMBER(depth_per_component) |
173 IPC_STRUCT_TRAITS_MEMBER(is_monochrome) | 173 IPC_STRUCT_TRAITS_MEMBER(is_monochrome) |
| 174 IPC_STRUCT_TRAITS_MEMBER(is_virtual) |
174 IPC_STRUCT_TRAITS_MEMBER(rect) | 175 IPC_STRUCT_TRAITS_MEMBER(rect) |
175 IPC_STRUCT_TRAITS_MEMBER(available_rect) | 176 IPC_STRUCT_TRAITS_MEMBER(available_rect) |
176 IPC_STRUCT_TRAITS_MEMBER(orientation_type) | 177 IPC_STRUCT_TRAITS_MEMBER(orientation_type) |
177 IPC_STRUCT_TRAITS_MEMBER(orientation_angle) | 178 IPC_STRUCT_TRAITS_MEMBER(orientation_angle) |
178 IPC_STRUCT_TRAITS_END() | 179 IPC_STRUCT_TRAITS_END() |
179 | 180 |
180 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) | 181 IPC_STRUCT_TRAITS_BEGIN(content::ResizeParams) |
181 IPC_STRUCT_TRAITS_MEMBER(screen_info) | 182 IPC_STRUCT_TRAITS_MEMBER(screen_info) |
182 IPC_STRUCT_TRAITS_MEMBER(new_size) | 183 IPC_STRUCT_TRAITS_MEMBER(new_size) |
183 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) | 184 IPC_STRUCT_TRAITS_MEMBER(physical_backing_size) |
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
925 int /* y */) | 926 int /* y */) |
926 | 927 |
927 #elif defined(OS_MACOSX) | 928 #elif defined(OS_MACOSX) |
928 // Receives content of a web page as plain text. | 929 // Receives content of a web page as plain text. |
929 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 930 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
930 #endif | 931 #endif |
931 | 932 |
932 // Adding a new message? Stick to the sort order above: first platform | 933 // Adding a new message? Stick to the sort order above: first platform |
933 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 934 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
934 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 935 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |