| Index: third_party/mojo/src/mojo/edk/system/channel_endpoint_id.cc
|
| diff --git a/third_party/mojo/src/mojo/edk/system/channel_endpoint_id.cc b/third_party/mojo/src/mojo/edk/system/channel_endpoint_id.cc
|
| deleted file mode 100644
|
| index d7f01e4116cda68430725e271a5d5a5c70740cd6..0000000000000000000000000000000000000000
|
| --- a/third_party/mojo/src/mojo/edk/system/channel_endpoint_id.cc
|
| +++ /dev/null
|
| @@ -1,29 +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 "third_party/mojo/src/mojo/edk/system/channel_endpoint_id.h"
|
| -
|
| -namespace mojo {
|
| -namespace system {
|
| -
|
| -MOJO_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
|
|
|