[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / mojo / service_manager / test.mojom
blob868a4d305ff9b163bbc3c4448404267d4f2e40fd
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 module mojo {
7 [Client=TestClient]
8 interface TestService {
9   Test(string test_string);
12 interface TestClient {
13   AckTest();
16 interface TestA {
17   CallB();
18   CallCFromB();
21 interface TestB {
22   B() => ();
23   CallC() => ();
26 interface TestC {
27   C() => ();