Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: mojo/services/dbus_echo/echo.mojom

Issue 242763003: Implement a trivial Mojo EchoService that can be connected to over DBus (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dropped logging in dbus_echo_service to VLOG Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698