diff options
Diffstat (limited to 'chrome/plugin/plugin_thread.cc')
-rw-r--r-- | chrome/plugin/plugin_thread.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/plugin/plugin_thread.cc b/chrome/plugin/plugin_thread.cc index 5f26f71..10172e7 100644 --- a/chrome/plugin/plugin_thread.cc +++ b/chrome/plugin/plugin_thread.cc @@ -88,12 +88,14 @@ void PluginThread::CleanUp() { ChildThread::CleanUp(); } -void PluginThread::OnCreateChannel() { +void PluginThread::OnCreateChannel(bool off_the_record) { std::wstring channel_name; scoped_refptr<PluginChannel> channel = PluginChannel::GetPluginChannel(owner_loop()); - if (channel.get()) + if (channel.get()) { channel_name = channel->channel_name(); + channel->set_off_the_record(off_the_record); + } Send(new PluginProcessHostMsg_ChannelCreated(channel_name)); } |