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(); |
} |