Index: mojo/embedder/platform_channel_pair.cc |
diff --git a/mojo/embedder/platform_channel_pair.cc b/mojo/embedder/platform_channel_pair.cc |
deleted file mode 100644 |
index 783ced8b71130f68129a4403f66d39fbebe8bec1..0000000000000000000000000000000000000000 |
--- a/mojo/embedder/platform_channel_pair.cc |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "mojo/embedder/platform_channel_pair.h" |
- |
-#include "base/logging.h" |
- |
-namespace mojo { |
-namespace embedder { |
- |
-const char PlatformChannelPair::kMojoPlatformChannelHandleSwitch[] = |
- "mojo-platform-channel-handle"; |
- |
-PlatformChannelPair::~PlatformChannelPair() { |
-} |
- |
-ScopedPlatformHandle PlatformChannelPair::PassServerHandle() { |
- return server_handle_.Pass(); |
-} |
- |
-ScopedPlatformHandle PlatformChannelPair::PassClientHandle() { |
- return client_handle_.Pass(); |
-} |
- |
-void PlatformChannelPair::ChildProcessLaunched() { |
- DCHECK(client_handle_.is_valid()); |
- client_handle_.reset(); |
-} |
- |
-} // namespace embedder |
-} // namespace mojo |