blob: 0fda21af626723f3c5f35a7130c517130c56ba18 [file] [log] [blame]
Aaron Boodman7a71baa2015-02-04 17:40:17 -08001// 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
5module reaper;
6
7// Scythe is a delegate that Reaper invokes to kill applications. It will
8// typically be implemented by the shell.
9interface 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};