repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change TSan suppressions to work around a symbolization bug in the tool.
[chromium-blink-merge.git]
/
mojo
/
shell
/
test.mojom
blob
25700b59b6f382512c315e137b0adeb4069776d5
1
// Copyright 2014 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.
4
5
module mojo.shell;
6
7
interface TestService {
8
Test(string test_string) => ();
9
};
10
11
interface TestA {
12
CallB();
13
CallCFromB();
14
};
15
16
interface TestB {
17
B() => ();
18
CallC() => ();
19
};
20
21
interface TestC {
22
C() => ();
23
};