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 "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 IPC_STRUCT_TRAITS_MEMBER(height) | 124 IPC_STRUCT_TRAITS_MEMBER(height) |
125 IPC_STRUCT_TRAITS_END() | 125 IPC_STRUCT_TRAITS_END() |
126 | 126 |
127 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) | 127 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) |
128 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) | 128 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) |
129 IPC_STRUCT_TRAITS_MEMBER(depth) | 129 IPC_STRUCT_TRAITS_MEMBER(depth) |
130 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) | 130 IPC_STRUCT_TRAITS_MEMBER(depthPerComponent) |
131 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) | 131 IPC_STRUCT_TRAITS_MEMBER(isMonochrome) |
132 IPC_STRUCT_TRAITS_MEMBER(rect) | 132 IPC_STRUCT_TRAITS_MEMBER(rect) |
133 IPC_STRUCT_TRAITS_MEMBER(availableRect) | 133 IPC_STRUCT_TRAITS_MEMBER(availableRect) |
| 134 IPC_STRUCT_TRAITS_MEMBER(orientationType) |
| 135 IPC_STRUCT_TRAITS_MEMBER(orientationAngle) |
134 IPC_STRUCT_TRAITS_END() | 136 IPC_STRUCT_TRAITS_END() |
135 | 137 |
136 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) | 138 IPC_STRUCT_TRAITS_BEGIN(content::MenuItem) |
137 IPC_STRUCT_TRAITS_MEMBER(label) | 139 IPC_STRUCT_TRAITS_MEMBER(label) |
138 IPC_STRUCT_TRAITS_MEMBER(tool_tip) | 140 IPC_STRUCT_TRAITS_MEMBER(tool_tip) |
139 IPC_STRUCT_TRAITS_MEMBER(type) | 141 IPC_STRUCT_TRAITS_MEMBER(type) |
140 IPC_STRUCT_TRAITS_MEMBER(action) | 142 IPC_STRUCT_TRAITS_MEMBER(action) |
141 IPC_STRUCT_TRAITS_MEMBER(rtl) | 143 IPC_STRUCT_TRAITS_MEMBER(rtl) |
142 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 144 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
143 IPC_STRUCT_TRAITS_MEMBER(enabled) | 145 IPC_STRUCT_TRAITS_MEMBER(enabled) |
(...skipping 1685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1829 // synchronously (see crbug.com/120597). This IPC message sends the character | 1831 // synchronously (see crbug.com/120597). This IPC message sends the character |
1830 // bounds after every composition change to always have correct bound info. | 1832 // bounds after every composition change to always have correct bound info. |
1831 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 1833 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
1832 gfx::Range /* composition range */, | 1834 gfx::Range /* composition range */, |
1833 std::vector<gfx::Rect> /* character bounds */) | 1835 std::vector<gfx::Rect> /* character bounds */) |
1834 #endif | 1836 #endif |
1835 | 1837 |
1836 // Adding a new message? Stick to the sort order above: first platform | 1838 // Adding a new message? Stick to the sort order above: first platform |
1837 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1839 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1838 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1840 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |