OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cycle_sub.h" | 5 module mojo { |
Chris Masone
2014/04/18 18:26:28
I have no idea how git went and found this file th
| |
6 | 6 |
7 namespace WebCore { | 7 [Peer=EchoClient] |
8 interface EchoService { | |
9 Echo(string to_echo) => (string echoed); | |
10 }; | |
8 | 11 |
9 void B::trace(Visitor* visitor) { | 12 [Peer=EchoService] |
10 visitor->trace(m_c); | 13 interface EchoClient { |
11 A::trace(visitor); | 14 }; |
12 } | |
13 | 15 |
14 } | 16 } |
OLD | NEW |