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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 IPC_STRUCT_TRAITS_BEGIN(blink::WebMediaPlayerAction) | 120 IPC_STRUCT_TRAITS_BEGIN(blink::WebMediaPlayerAction) |
121 IPC_STRUCT_TRAITS_MEMBER(type) | 121 IPC_STRUCT_TRAITS_MEMBER(type) |
122 IPC_STRUCT_TRAITS_MEMBER(enable) | 122 IPC_STRUCT_TRAITS_MEMBER(enable) |
123 IPC_STRUCT_TRAITS_END() | 123 IPC_STRUCT_TRAITS_END() |
124 | 124 |
125 IPC_STRUCT_TRAITS_BEGIN(blink::WebPluginAction) | 125 IPC_STRUCT_TRAITS_BEGIN(blink::WebPluginAction) |
126 IPC_STRUCT_TRAITS_MEMBER(type) | 126 IPC_STRUCT_TRAITS_MEMBER(type) |
127 IPC_STRUCT_TRAITS_MEMBER(enable) | 127 IPC_STRUCT_TRAITS_MEMBER(enable) |
128 IPC_STRUCT_TRAITS_END() | 128 IPC_STRUCT_TRAITS_END() |
129 | 129 |
130 IPC_STRUCT_TRAITS_BEGIN(blink::WebFloatPoint) | |
131 IPC_STRUCT_TRAITS_MEMBER(x) | |
132 IPC_STRUCT_TRAITS_MEMBER(y) | |
133 IPC_STRUCT_TRAITS_END() | |
134 | |
135 IPC_STRUCT_TRAITS_BEGIN(blink::WebFloatRect) | 130 IPC_STRUCT_TRAITS_BEGIN(blink::WebFloatRect) |
136 IPC_STRUCT_TRAITS_MEMBER(x) | 131 IPC_STRUCT_TRAITS_MEMBER(x) |
137 IPC_STRUCT_TRAITS_MEMBER(y) | 132 IPC_STRUCT_TRAITS_MEMBER(y) |
138 IPC_STRUCT_TRAITS_MEMBER(width) | 133 IPC_STRUCT_TRAITS_MEMBER(width) |
139 IPC_STRUCT_TRAITS_MEMBER(height) | 134 IPC_STRUCT_TRAITS_MEMBER(height) |
140 IPC_STRUCT_TRAITS_END() | 135 IPC_STRUCT_TRAITS_END() |
141 | 136 |
142 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) | 137 IPC_STRUCT_TRAITS_BEGIN(blink::WebScreenInfo) |
143 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) | 138 IPC_STRUCT_TRAITS_MEMBER(deviceScaleFactor) |
144 IPC_STRUCT_TRAITS_MEMBER(depth) | 139 IPC_STRUCT_TRAITS_MEMBER(depth) |
(...skipping 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1657 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1652 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1658 // for details. | 1653 // for details. |
1659 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1654 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1660 LOGFONT /* font_data */, | 1655 LOGFONT /* font_data */, |
1661 base::string16 /* characters */) | 1656 base::string16 /* characters */) |
1662 #endif | 1657 #endif |
1663 | 1658 |
1664 // Adding a new message? Stick to the sort order above: first platform | 1659 // Adding a new message? Stick to the sort order above: first platform |
1665 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1660 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1666 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1661 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |