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

Unified Diff: mojo/public/cpp/bindings/tests/test_bindings_utils.h

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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/public/cpp/bindings/tests/test_bindings_utils.h
diff --git a/mojo/public/cpp/bindings/tests/test_bindings_utils.h b/mojo/public/cpp/bindings/tests/test_bindings_utils.h
new file mode 100644
index 0000000000000000000000000000000000000000..344628d06dc1c1b9ef762eba04d444412b2f5622
--- /dev/null
+++ b/mojo/public/cpp/bindings/tests/test_bindings_utils.h
@@ -0,0 +1,26 @@
+// 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.
+
+#ifndef MOJO_PUBLIC_CPP_BINDINGS_TESTS_TEST_BINDINGS_UTILS_H_
+#define MOJO_PUBLIC_CPP_BINDINGS_TESTS_TEST_BINDINGS_UTILS_H_
+
+#include "mojo/public/cpp/bindings/interface_ptr.h"
+
+namespace mojo {
+namespace test {
+
+template <typename InterfaceImpl, typename Interface>
+void MakeRemote(InterfaceImpl* impl, InterfacePtr<Interface>* ptr) {
+ MessagePipe pipe;
+ ptr->ConfigureProxy(pipe.handle0.Pass());
+
+ InterfacePtr<Interface> server(impl);
+ server.ConfigureStub(pipe.handle1.Pass());
+ server.Detach();
+}
+
+} // namespace test
+} // namespace mojo
+
+#endif // MOJO_PUBLIC_CPP_BINDINGS_TESTS_TEST_BINDINGS_UTILS_H_

Powered by Google App Engine
This is Rietveld 408576698