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

Unified Diff: mojo/edk/system/async_waiter.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/async_waiter.cc
diff --git a/third_party/mojo/src/mojo/edk/system/async_waiter.cc b/mojo/edk/system/async_waiter.cc
similarity index 80%
copy from third_party/mojo/src/mojo/edk/system/async_waiter.cc
copy to mojo/edk/system/async_waiter.cc
index 9f426247f9ef9fc66f2d2c2cfe50aed3fa55625b..d2e7000fb3879f43b2dbeeae2fb7ca3d2df28593 100644
--- a/third_party/mojo/src/mojo/edk/system/async_waiter.cc
+++ b/mojo/edk/system/async_waiter.cc
@@ -2,10 +2,10 @@
// 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/async_waiter.h"
+#include "mojo/edk/system/async_waiter.h"
namespace mojo {
-namespace system {
+namespace edk {
AsyncWaiter::AsyncWaiter(const AwakeCallback& callback) : callback_(callback) {
}
@@ -19,5 +19,5 @@ bool AsyncWaiter::Awake(MojoResult result, uintptr_t context) {
return false;
}
-} // namespace system
+} // namespace edk
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698