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

Side by Side Diff: content/renderer/pepper/pepper_proxy_channel_delegate_impl.cc

Issue 10378057: Broker out PPAPI handle duplication (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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) 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/renderer/pepper/pepper_proxy_channel_delegate_impl.h" 5 #include "content/renderer/pepper/pepper_proxy_channel_delegate_impl.h"
6 6
7 #include "content/common/child_process.h" 7 #include "content/common/child_process.h"
8 #include "content/public/common/sandbox_init.h"
8 9
9 namespace content { 10 namespace content {
10 11
11 PepperProxyChannelDelegateImpl::~PepperProxyChannelDelegateImpl() { 12 PepperProxyChannelDelegateImpl::~PepperProxyChannelDelegateImpl() {
12 } 13 }
13 14
14 base::MessageLoopProxy* PepperProxyChannelDelegateImpl::GetIPCMessageLoop() { 15 base::MessageLoopProxy* PepperProxyChannelDelegateImpl::GetIPCMessageLoop() {
15 // This is called only in the renderer so we know we have a child process. 16 // This is called only in the renderer so we know we have a child process.
16 DCHECK(ChildProcess::current()) << "Must be in the renderer."; 17 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
17 return ChildProcess::current()->io_message_loop_proxy(); 18 return ChildProcess::current()->io_message_loop_proxy();
18 } 19 }
19 20
20 base::WaitableEvent* PepperProxyChannelDelegateImpl::GetShutdownEvent() { 21 base::WaitableEvent* PepperProxyChannelDelegateImpl::GetShutdownEvent() {
21 DCHECK(ChildProcess::current()) << "Must be in the renderer."; 22 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
22 return ChildProcess::current()->GetShutDownEvent(); 23 return ChildProcess::current()->GetShutDownEvent();
23 } 24 }
24 25
26 IPC::PlatformFileForTransit
27 PepperProxyChannelDelegateImpl::ShareHandleWithRemote(
28 base::PlatformFile handle,
29 const IPC::SyncChannel& channel,
30 bool should_close_source) {
31 return content::BrokerGetFileHandleForProcess(handle, channel.peer_pid(),
32 should_close_source);
33 }
34
25 } // namespace content 35 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_proxy_channel_delegate_impl.h ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698