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