OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 ash.mojom; |
| 6 |
| 7 // Interface implemented by service:content_browser to activate shutdown. |
| 8 // |
| 9 // TODO(erg): Eventually, when CrosSettings is moved out of chrome into its |
| 10 // own process, this client should go away. The code which actually calls |
| 11 // shutdown should be moved into ash/, and ash should subscribe to changes |
| 12 // in CrosSettings. crbug.com/628792 |
| 13 interface ShutdownClient { |
| 14 // Requests that the system shuts down. |
| 15 RequestShutdown(); |
| 16 }; |
OLD | NEW |