summaryrefslogtreecommitdiffstats
path: root/chromium/mojo/service_manager/test.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/service_manager/test.mojom')
-rw-r--r--chromium/mojo/service_manager/test.mojom24
1 files changed, 24 insertions, 0 deletions
diff --git a/chromium/mojo/service_manager/test.mojom b/chromium/mojo/service_manager/test.mojom
new file mode 100644
index 00000000000..47921cda9af
--- /dev/null
+++ b/chromium/mojo/service_manager/test.mojom
@@ -0,0 +1,24 @@
+// Copyright 2013 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 {
+
+[Client=TestClient]
+interface TestService {
+ Test(string test_string);
+};
+
+interface TestClient {
+ AckTest();
+};
+
+interface TestA {
+ LoadB();
+};
+
+interface TestB {
+ Test();
+};
+
+}