summaryrefslogtreecommitdiffstats
path: root/mojo/edk/system/channel_endpoint_id.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/edk/system/channel_endpoint_id.cc')
-rw-r--r--mojo/edk/system/channel_endpoint_id.cc30
1 files changed, 0 insertions, 30 deletions
diff --git a/mojo/edk/system/channel_endpoint_id.cc b/mojo/edk/system/channel_endpoint_id.cc
deleted file mode 100644
index ed00f6a..0000000
--- 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