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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 IPC_ENUM_TRAITS(chrome::search::Mode::Origin) | 176 IPC_ENUM_TRAITS(chrome::search::Mode::Origin) |
177 IPC_STRUCT_TRAITS_BEGIN(chrome::search::Mode) | 177 IPC_STRUCT_TRAITS_BEGIN(chrome::search::Mode) |
178 IPC_STRUCT_TRAITS_MEMBER(mode) | 178 IPC_STRUCT_TRAITS_MEMBER(mode) |
179 IPC_STRUCT_TRAITS_MEMBER(origin) | 179 IPC_STRUCT_TRAITS_MEMBER(origin) |
180 IPC_STRUCT_TRAITS_END() | 180 IPC_STRUCT_TRAITS_END() |
181 | 181 |
182 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams) | 182 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams) |
183 IPC_STRUCT_TRAITS_MEMBER(manifest_url) | 183 IPC_STRUCT_TRAITS_MEMBER(manifest_url) |
184 IPC_STRUCT_TRAITS_MEMBER(render_view_id) | 184 IPC_STRUCT_TRAITS_MEMBER(render_view_id) |
185 IPC_STRUCT_TRAITS_MEMBER(permission_bits) | 185 IPC_STRUCT_TRAITS_MEMBER(permission_bits) |
| 186 IPC_STRUCT_TRAITS_MEMBER(uses_irt) |
186 IPC_STRUCT_TRAITS_END() | 187 IPC_STRUCT_TRAITS_END() |
187 | 188 |
188 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 189 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
189 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 190 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
190 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 191 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
191 IPC_STRUCT_TRAITS_END() | 192 IPC_STRUCT_TRAITS_END() |
192 | 193 |
193 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) | 194 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) |
194 IPC_STRUCT_TRAITS_MEMBER(color_r) | 195 IPC_STRUCT_TRAITS_MEMBER(color_r) |
195 IPC_STRUCT_TRAITS_MEMBER(color_g) | 196 IPC_STRUCT_TRAITS_MEMBER(color_g) |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 // previous SetCookie message to be processed. | 716 // previous SetCookie message to be processed. |
716 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 717 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
717 GURL /* url */, | 718 GURL /* url */, |
718 GURL /* first_party_for_cookies */, | 719 GURL /* first_party_for_cookies */, |
719 std::string /* cookies */) | 720 std::string /* cookies */) |
720 | 721 |
721 // Provide the browser process with current renderer framerate. | 722 // Provide the browser process with current renderer framerate. |
722 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 723 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
723 int /* routing id */, | 724 int /* routing id */, |
724 float /* frames per second */) | 725 float /* frames per second */) |
OLD | NEW |