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

Unified Diff: mojo/services/test_service/test_service.mojom

Issue 314293002: Mojo: Add a trivial end-to-end (in-process) test of Mojo shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/services/test_service/test_service.mojom
diff --git a/mojo/services/dbus_echo/echo.mojom b/mojo/services/test_service/test_service.mojom
similarity index 67%
copy from mojo/services/dbus_echo/echo.mojom
copy to mojo/services/test_service/test_service.mojom
index 937737c223cf423c989c0eb76b41b12bb0f6df0b..1065b20ab30847eca7a74f2ed21f5e31691f6ed4 100644
--- a/mojo/services/dbus_echo/echo.mojom
+++ b/mojo/services/test_service/test_service.mojom
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module mojo {
+module mojo.test {
-interface EchoService {
- Echo(string to_echo) => (string echoed);
+interface ITestService {
+ Ping() => ();
};
-}
+} // module mojo.test

Powered by Google App Engine
This is Rietveld 408576698