summaryrefslogtreecommitdiffstats
path: root/chromium/mojo/services/dbus_echo/echo.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/services/dbus_echo/echo.mojom')
-rw-r--r--chromium/mojo/services/dbus_echo/echo.mojom11
1 files changed, 11 insertions, 0 deletions
diff --git a/chromium/mojo/services/dbus_echo/echo.mojom b/chromium/mojo/services/dbus_echo/echo.mojom
new file mode 100644
index 00000000000..937737c223c
--- /dev/null
+++ b/chromium/mojo/services/dbus_echo/echo.mojom
@@ -0,0 +1,11 @@
+// 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.
+
+module mojo {
+
+interface EchoService {
+ Echo(string to_echo) => (string echoed);
+};
+
+}