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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 IPC_STRUCT_TRAITS_MEMBER(screen_position) | 156 IPC_STRUCT_TRAITS_MEMBER(screen_position) |
157 IPC_STRUCT_TRAITS_MEMBER(screen_size) | 157 IPC_STRUCT_TRAITS_MEMBER(screen_size) |
158 IPC_STRUCT_TRAITS_MEMBER(view_position) | 158 IPC_STRUCT_TRAITS_MEMBER(view_position) |
159 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) | 159 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) |
160 IPC_STRUCT_TRAITS_MEMBER(view_size) | 160 IPC_STRUCT_TRAITS_MEMBER(view_size) |
161 IPC_STRUCT_TRAITS_MEMBER(fit_to_view) | 161 IPC_STRUCT_TRAITS_MEMBER(fit_to_view) |
162 IPC_STRUCT_TRAITS_MEMBER(offset) | 162 IPC_STRUCT_TRAITS_MEMBER(offset) |
163 IPC_STRUCT_TRAITS_MEMBER(scale) | 163 IPC_STRUCT_TRAITS_MEMBER(scale) |
164 IPC_STRUCT_TRAITS_MEMBER(screen_orientation_angle) | 164 IPC_STRUCT_TRAITS_MEMBER(screen_orientation_angle) |
165 IPC_STRUCT_TRAITS_MEMBER(screen_orientation_type) | 165 IPC_STRUCT_TRAITS_MEMBER(screen_orientation_type) |
| 166 IPC_STRUCT_TRAITS_MEMBER(override_gutter_color) |
166 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
167 | 168 |
168 IPC_STRUCT_TRAITS_BEGIN(content::ScreenInfo) | 169 IPC_STRUCT_TRAITS_BEGIN(content::ScreenInfo) |
169 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) | 170 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) |
170 IPC_STRUCT_TRAITS_MEMBER(icc_profile) | 171 IPC_STRUCT_TRAITS_MEMBER(icc_profile) |
171 IPC_STRUCT_TRAITS_MEMBER(depth) | 172 IPC_STRUCT_TRAITS_MEMBER(depth) |
172 IPC_STRUCT_TRAITS_MEMBER(depth_per_component) | 173 IPC_STRUCT_TRAITS_MEMBER(depth_per_component) |
173 IPC_STRUCT_TRAITS_MEMBER(is_monochrome) | 174 IPC_STRUCT_TRAITS_MEMBER(is_monochrome) |
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) |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 int /* y */) | 890 int /* y */) |
890 | 891 |
891 #elif defined(OS_MACOSX) | 892 #elif defined(OS_MACOSX) |
892 // Receives content of a web page as plain text. | 893 // Receives content of a web page as plain text. |
893 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 894 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
894 #endif | 895 #endif |
895 | 896 |
896 // Adding a new message? Stick to the sort order above: first platform | 897 // Adding a new message? Stick to the sort order above: first platform |
897 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 898 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
898 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 899 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |