Aaron Boodman | 7a71baa | 2015-02-04 17:40:17 -0800 | [diff] [blame] | 1 | // Copyright 2015 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 reaper; |
| 6 | |
| 7 | // Scythe is a delegate that Reaper invokes to kill applications. It will |
| 8 | // typically be implemented by the shell. |
| 9 | interface Scythe { |
| 10 | // Kill the application with the specified URL. |
| 11 | KillApplication(string url); |
| 12 | |
| 13 | // No-op used for creating ordering between interfaces. |
| 14 | Ping() => (); |
| 15 | }; |