OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "base/utf_string_conversions.h" | 5 #include "base/utf_string_conversions.h" |
| 6 #include "content/common/common_param_traits.h" |
6 #include "ipc/ipc_channel_handle.h" | 7 #include "ipc/ipc_channel_handle.h" |
7 | 8 |
8 #define IPC_MESSAGE_IMPL | 9 #define IPC_MESSAGE_IMPL |
9 #include "chrome/common/plugin_messages.h" | 10 #include "chrome/common/plugin_messages.h" |
10 | 11 |
11 PluginMsg_Init_Params::PluginMsg_Init_Params() | 12 PluginMsg_Init_Params::PluginMsg_Init_Params() |
12 : containing_window(0), | 13 : containing_window(0), |
13 load_manually(false), | 14 load_manually(false), |
14 host_render_view_routing_id(-1) { | 15 host_render_view_routing_id(-1) { |
15 } | 16 } |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 l->append(", "); | 306 l->append(", "); |
306 LogParam(p.transparent, l); | 307 LogParam(p.transparent, l); |
307 #if defined(OS_MACOSX) | 308 #if defined(OS_MACOSX) |
308 l->append(", "); | 309 l->append(", "); |
309 LogParam(p.ack_key, l); | 310 LogParam(p.ack_key, l); |
310 #endif | 311 #endif |
311 l->append(")"); | 312 l->append(")"); |
312 } | 313 } |
313 | 314 |
314 } // namespace IPC | 315 } // namespace IPC |
OLD | NEW |