Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: chrome/common/plugin_messages.cc

Issue 6646005: Creates the ipclist utility that chrome security team has wanted to dump... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698