Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1343)

Unified Diff: mojo/edk/system/channel_endpoint_id.cc

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/edk/system/channel_endpoint_id.h ('k') | mojo/edk/system/channel_endpoint_id_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « mojo/edk/system/channel_endpoint_id.h ('k') | mojo/edk/system/channel_endpoint_id_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698