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

Unified Diff: services/dart/test/interfaces/pingpong_service.mojom

Issue 1545483003: Dart: Reorganize files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix build file Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/dart/test/interfaces/echo_service.mojom ('k') | services/dart/test/pingpong/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/dart/test/interfaces/pingpong_service.mojom
diff --git a/services/dart/test/interfaces/pingpong_service.mojom b/services/dart/test/interfaces/pingpong_service.mojom
deleted file mode 100644
index bd30cf20a6d4213eacae5f47c3262fe8cb3b88ad..0000000000000000000000000000000000000000
--- a/services/dart/test/interfaces/pingpong_service.mojom
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[DartPackage="_mojo_for_test_only"]
-module test;
-
-[ServiceName="test::PingPongService"]
-interface PingPongService {
- // Register the client interface with the service.
- SetClient(PingPongClient client);
-
- // Typically calls PingPongClient::Pong(ping_value + 1)
- Ping(uint16 ping_value);
-
- // Ping the PingPongService at |url| |count| times and return true
- // after the final Pong() is received.
- PingTargetURL(string url, uint16 count) => (bool ok);
-
- // Ping the PingPongService |count| times and return true
- // after the final Pong() is received.
- PingTargetService(PingPongService service, uint16 count) => (bool ok);
-
- // Return a PingPongService
- GetPingPongService(PingPongService& service);
-
- // Make it stop.
- Quit();
-};
-
-interface PingPongClient {
- Pong(uint16 pong_value);
-};
« no previous file with comments | « services/dart/test/interfaces/echo_service.mojom ('k') | services/dart/test/pingpong/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698