Change TSan suppressions to work around a symbolization bug in the tool.
[chromium-blink-merge.git] / mojo / shell / test.mojom
blob25700b59b6f382512c315e137b0adeb4069776d5
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.
5 module mojo.shell;
7 interface TestService {
8   Test(string test_string) => ();
9 };
11 interface TestA {
12   CallB();
13   CallCFromB();
16 interface TestB {
17   B() => ();
18   CallC() => ();
21 interface TestC {
22   C() => ();