Index: mojo/edk/system/channel_endpoint_id.cc |
diff --git a/mojo/edk/system/channel_endpoint_id.cc b/mojo/edk/system/channel_endpoint_id.cc |
deleted file mode 100644 |
index ed00f6ade515cb4e32ef7aa6734deb76023dca50..0000000000000000000000000000000000000000 |
--- a/mojo/edk/system/channel_endpoint_id.cc |
+++ /dev/null |
@@ -1,30 +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/edk/system/channel_endpoint_id.h" |
- |
-#include "base/compiler_specific.h" |
- |
-namespace mojo { |
-namespace system { |
- |
-STATIC_CONST_MEMBER_DEFINITION const uint32_t ChannelEndpointId::kRemoteFlag; |
- |
-ChannelEndpointId LocalChannelEndpointIdGenerator::GetNext() { |
- ChannelEndpointId rv = next_; |
- next_.value_ = (next_.value_ + 1) & ~ChannelEndpointId::kRemoteFlag; |
- // Skip over the invalid value, in case we wrap. |
- if (!next_.is_valid()) |
- next_.value_++; |
- return rv; |
-} |
- |
-ChannelEndpointId RemoteChannelEndpointIdGenerator::GetNext() { |
- ChannelEndpointId rv = next_; |
- next_.value_ = (next_.value_ + 1) | ChannelEndpointId::kRemoteFlag; |
- return rv; |
-} |
- |
-} // namespace system |
-} // namespace mojo |