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

Unified Diff: mojo/public/cpp/bindings/tests/sample_service_unittest.cc

Issue 272323003: Mojo: Implement support for |Foo&| mojom syntax (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/sample_service_unittest.cc
diff --git a/mojo/public/cpp/bindings/tests/sample_service_unittest.cc b/mojo/public/cpp/bindings/tests/sample_service_unittest.cc
index 3d0112d2395d8093505cf2daeeb005edcedd44be..b2998a588d0067cea1a8c904c5b50574fa3b6db4 100644
--- a/mojo/public/cpp/bindings/tests/sample_service_unittest.cc
+++ b/mojo/public/cpp/bindings/tests/sample_service_unittest.cc
@@ -275,6 +275,10 @@ class ServiceImpl : public Service {
Print(depth, "port", port.get());
}
}
+
+ virtual void GetPort(mojo::InterfaceRequest<Port> port_request)
+ MOJO_OVERRIDE {
+ }
};
class ServiceProxyImpl : public ServiceProxy {

Powered by Google App Engine
This is Rietveld 408576698