OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 IPC_STRUCT_TRAITS_END() | 140 IPC_STRUCT_TRAITS_END() |
141 | 141 |
142 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect) | 142 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebRect) |
143 IPC_STRUCT_TRAITS_MEMBER(x) | 143 IPC_STRUCT_TRAITS_MEMBER(x) |
144 IPC_STRUCT_TRAITS_MEMBER(y) | 144 IPC_STRUCT_TRAITS_MEMBER(y) |
145 IPC_STRUCT_TRAITS_MEMBER(width) | 145 IPC_STRUCT_TRAITS_MEMBER(width) |
146 IPC_STRUCT_TRAITS_MEMBER(height) | 146 IPC_STRUCT_TRAITS_MEMBER(height) |
147 IPC_STRUCT_TRAITS_END() | 147 IPC_STRUCT_TRAITS_END() |
148 | 148 |
149 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebScreenInfo) | 149 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebScreenInfo) |
| 150 IPC_STRUCT_TRAITS_MEMBER(verticalDPI) |
| 151 IPC_STRUCT_TRAITS_MEMBER(horizontalDPI) |
150 IPC_STRUCT_TRAITS_MEMBER(depth) | 152 IPC_STRUCT_TRAITS_MEMBER(depth) |
151 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) | 153 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) |
152 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) | 154 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) |
153 IPC_STRUCT_TRAITS_MEMBER(rect) | 155 IPC_STRUCT_TRAITS_MEMBER(rect) |
154 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 156 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
155 IPC_STRUCT_TRAITS_END() | 157 IPC_STRUCT_TRAITS_END() |
156 | 158 |
157 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) | 159 IPC_STRUCT_TRAITS_BEGIN(WebPreferences) |
158 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) | 160 IPC_STRUCT_TRAITS_MEMBER(standard_font_family) |
159 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) | 161 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family) |
(...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1952 media::MediaLogEvent /* event */) | 1954 media::MediaLogEvent /* event */) |
1953 | 1955 |
1954 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1956 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1955 // being sent back. | 1957 // being sent back. |
1956 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1958 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1957 | 1959 |
1958 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1960 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1959 // whenever the mouse is unlocked (which may or may not be caused by | 1961 // whenever the mouse is unlocked (which may or may not be caused by |
1960 // ViewHostMsg_UnlockMouse). | 1962 // ViewHostMsg_UnlockMouse). |
1961 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1963 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |