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 #include "content/plugin/plugin_channel.h" | 5 #include "content/plugin/plugin_channel.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/process/process_handle.h" | 9 #include "base/process/process_handle.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 return true; | 238 return true; |
239 } | 239 } |
240 | 240 |
241 PluginChannel::PluginChannel() | 241 PluginChannel::PluginChannel() |
242 : renderer_id_(-1), | 242 : renderer_id_(-1), |
243 in_send_(0), | 243 in_send_(0), |
244 incognito_(false), | 244 incognito_(false), |
245 filter_(new MessageFilter()), | 245 filter_(new MessageFilter()), |
246 npp_(new struct _NPP) { | 246 npp_(new struct _NPP) { |
247 set_send_unblocking_only_during_unblock_dispatch(); | 247 set_send_unblocking_only_during_unblock_dispatch(); |
| 248 const CommandLine* command_line = CommandLine::ForCurrentProcess(); |
| 249 log_messages_ = command_line->HasSwitch(switches::kLogPluginMessages); |
248 | 250 |
249 // Register |npp_| as the default owner for any object we receive via IPC, | 251 // Register |npp_| as the default owner for any object we receive via IPC, |
250 // and register it with WebBindings as a valid owner. | 252 // and register it with WebBindings as a valid owner. |
251 SetDefaultNPObjectOwner(npp_.get()); | 253 SetDefaultNPObjectOwner(npp_.get()); |
252 WebBindings::registerObjectOwner(npp_.get()); | 254 WebBindings::registerObjectOwner(npp_.get()); |
253 } | 255 } |
254 | 256 |
255 bool PluginChannel::OnControlMessageReceived(const IPC::Message& msg) { | 257 bool PluginChannel::OnControlMessageReceived(const IPC::Message& msg) { |
256 bool handled = true; | 258 bool handled = true; |
257 IPC_BEGIN_MESSAGE_MAP(PluginChannel, msg) | 259 IPC_BEGIN_MESSAGE_MAP(PluginChannel, msg) |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 void PluginChannel::OnDidAbortLoading(int render_view_id) { | 339 void PluginChannel::OnDidAbortLoading(int render_view_id) { |
338 for (size_t i = 0; i < plugin_stubs_.size(); ++i) { | 340 for (size_t i = 0; i < plugin_stubs_.size(); ++i) { |
339 if (plugin_stubs_[i]->webplugin()->host_render_view_routing_id() == | 341 if (plugin_stubs_[i]->webplugin()->host_render_view_routing_id() == |
340 render_view_id) { | 342 render_view_id) { |
341 plugin_stubs_[i]->delegate()->instance()->CloseStreams(); | 343 plugin_stubs_[i]->delegate()->instance()->CloseStreams(); |
342 } | 344 } |
343 } | 345 } |
344 } | 346 } |
345 | 347 |
346 } // namespace content | 348 } // namespace content |
OLD | NEW |