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

Side by Side Diff: content/common/child_process_host_impl.h

Issue 2230283003: Revert of Establish MojoChildConnection from BrowserChildProcessHostImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@renderer-channel
Patch Set: Created 4 years, 4 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
« no previous file with comments | « content/common/DEPS ('k') | content/common/child_process_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Never returns MemoryDumpManager::kInvalidTracingProcessId. 73 // Never returns MemoryDumpManager::kInvalidTracingProcessId.
74 // Returns only ChildProcessHost::kBrowserTracingProcessId in single-process 74 // Returns only ChildProcessHost::kBrowserTracingProcessId in single-process
75 // mode. 75 // mode.
76 static uint64_t ChildProcessUniqueIdToTracingProcessId(int child_process_id); 76 static uint64_t ChildProcessUniqueIdToTracingProcessId(int child_process_id);
77 77
78 // ChildProcessHost implementation 78 // ChildProcessHost implementation
79 bool Send(IPC::Message* message) override; 79 bool Send(IPC::Message* message) override;
80 void ForceShutdown() override; 80 void ForceShutdown() override;
81 std::string CreateChannel() override; 81 std::string CreateChannel() override;
82 std::string CreateChannelMojo(const std::string& child_token) override; 82 std::string CreateChannelMojo(const std::string& child_token) override;
83 void CreateChannelMojo() override;
84 bool IsChannelOpening() override; 83 bool IsChannelOpening() override;
85 void AddFilter(IPC::MessageFilter* filter) override; 84 void AddFilter(IPC::MessageFilter* filter) override;
86 shell::InterfaceProvider* GetRemoteInterfaces() override;
87 #if defined(OS_POSIX) 85 #if defined(OS_POSIX)
88 base::ScopedFD TakeClientFileDescriptor() override; 86 base::ScopedFD TakeClientFileDescriptor() override;
89 #endif 87 #endif
90 88
91 private: 89 private:
92 friend class ChildProcessHost; 90 friend class ChildProcessHost;
93 91
94 explicit ChildProcessHostImpl(ChildProcessHostDelegate* delegate); 92 explicit ChildProcessHostImpl(ChildProcessHostDelegate* delegate);
95 93
96 // IPC::Listener methods: 94 // IPC::Listener methods:
(...skipping 29 matching lines...) Expand all
126 // thread, we don't have a IPC::ChannelProxy and so we manage filters 124 // thread, we don't have a IPC::ChannelProxy and so we manage filters
127 // manually. 125 // manually.
128 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; 126 std::vector<scoped_refptr<IPC::MessageFilter> > filters_;
129 127
130 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); 128 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl);
131 }; 129 };
132 130
133 } // namespace content 131 } // namespace content
134 132
135 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 133 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/DEPS ('k') | content/common/child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698