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

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

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more cleanup Created 5 years, 2 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
Index: mojo/edk/system/message_in_transit_queue.cc
diff --git a/third_party/mojo/src/mojo/edk/system/message_in_transit_queue.cc b/mojo/edk/system/message_in_transit_queue.cc
similarity index 84%
copy from third_party/mojo/src/mojo/edk/system/message_in_transit_queue.cc
copy to mojo/edk/system/message_in_transit_queue.cc
index db4617ff7dd4334ff5b9c66d76e458deb5cedd70..f95bf724c74525577a1934b975eda18051436b17 100644
--- a/third_party/mojo/src/mojo/edk/system/message_in_transit_queue.cc
+++ b/mojo/edk/system/message_in_transit_queue.cc
@@ -2,12 +2,12 @@
// 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/message_in_transit_queue.h"
+#include "mojo/edk/system/message_in_transit_queue.h"
#include "base/logging.h"
namespace mojo {
-namespace system {
+namespace edk {
MessageInTransitQueue::MessageInTransitQueue() {
}
@@ -29,5 +29,5 @@ void MessageInTransitQueue::Swap(MessageInTransitQueue* other) {
queue_.swap(other->queue_);
}
-} // namespace system
+} // namespace edk
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698