| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 IPC_STRUCT_TRAITS_BEGIN(blink::WebDeviceEmulationParams) | 155 IPC_STRUCT_TRAITS_BEGIN(blink::WebDeviceEmulationParams) |
| 156 IPC_STRUCT_TRAITS_MEMBER(screenPosition) | 156 IPC_STRUCT_TRAITS_MEMBER(screenPosition) |
| 157 IPC_STRUCT_TRAITS_MEMBER(screenSize) | 157 IPC_STRUCT_TRAITS_MEMBER(screenSize) |
| 158 IPC_STRUCT_TRAITS_MEMBER(viewPosition) | 158 IPC_STRUCT_TRAITS_MEMBER(viewPosition) |
| 159 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) | 159 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) |
| 160 IPC_STRUCT_TRAITS_MEMBER(viewSize) | 160 IPC_STRUCT_TRAITS_MEMBER(viewSize) |
| 161 IPC_STRUCT_TRAITS_MEMBER(fitToView) | 161 IPC_STRUCT_TRAITS_MEMBER(fitToView) |
| 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(screenOrientationAngle) |
| 165 IPC_STRUCT_TRAITS_MEMBER(screenOrientationType) |
| 164 IPC_STRUCT_TRAITS_END() | 166 IPC_STRUCT_TRAITS_END() |
| 165 | 167 |
| 166 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) | 168 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) |
| 167 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) | 169 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) |
| 168 IPC_STRUCT_TRAITS_MEMBER(depth) | 170 IPC_STRUCT_TRAITS_MEMBER(depth) |
| 169 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) | 171 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) |
| 170 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) | 172 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) |
| 171 IPC_STRUCT_TRAITS_MEMBER(rect) | 173 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 172 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 174 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
| 173 IPC_STRUCT_TRAITS_MEMBER(orientationType) | 175 IPC_STRUCT_TRAITS_MEMBER(orientationType) |
| (...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 // Instructs the browser to start plugin IME. | 1336 // Instructs the browser to start plugin IME. |
| 1335 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1337 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1336 | 1338 |
| 1337 // Receives content of a web page as plain text. | 1339 // Receives content of a web page as plain text. |
| 1338 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1340 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1339 #endif | 1341 #endif |
| 1340 | 1342 |
| 1341 // Adding a new message? Stick to the sort order above: first platform | 1343 // Adding a new message? Stick to the sort order above: first platform |
| 1342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1344 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1345 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |