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

Unified Diff: mojo/system/platform_channel_posix.cc

Issue 99473007: Mojo: Add a Mojo-specific multiprocess test base class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment + win fix Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/system/platform_channel.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/platform_channel_posix.cc
diff --git a/mojo/system/platform_channel_posix.cc b/mojo/system/platform_channel_posix.cc
index 9b71fdd3c7a7a7f2cdcf6fbe4b5bf56b75de5cc3..0b64620c6bdd08b26c513c6ef4d6174c1c066ee1 100644
--- a/mojo/system/platform_channel_posix.cc
+++ b/mojo/system/platform_channel_posix.cc
@@ -32,9 +32,9 @@ class PlatformServerChannelPosix : public PlatformServerChannel {
// |PlatformServerChannel| implementation:
virtual scoped_ptr<PlatformClientChannel> CreateClientChannel() OVERRIDE;
- virtual void PrepareToPassClientChannelToChildProcess(
+ virtual void GetDataNeededToPassClientChannelToChildProcess(
CommandLine* command_line,
- base::FileHandleMappingVector* file_handle_mapping) OVERRIDE;
+ base::FileHandleMappingVector* file_handle_mapping) const OVERRIDE;
virtual void ChildProcessLaunched() OVERRIDE;
private:
@@ -79,9 +79,9 @@ scoped_ptr<PlatformClientChannel>
return rv.Pass();
}
-void PlatformServerChannelPosix::PrepareToPassClientChannelToChildProcess(
+void PlatformServerChannelPosix::GetDataNeededToPassClientChannelToChildProcess(
CommandLine* command_line,
- base::FileHandleMappingVector* file_handle_mapping) {
+ base::FileHandleMappingVector* file_handle_mapping) const {
// TODO(vtl)
NOTIMPLEMENTED();
}
« no previous file with comments | « mojo/system/platform_channel.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698