| 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 service_manager.mojom; |  | 
|   6  |  | 
|   7 // The client interface a Service uses to issue requests to the Service Manager. |  | 
|   8 interface ServiceControl { |  | 
|   9   // Informs the Service Manager that the Service is ready to terminate. If |  | 
|  10   // the Service Manager needs the Service to stay alive - for example, if |  | 
|  11   // there's an in-flight OnConnect request which hasn't been acked yet - this |  | 
|  12   // request is ignored. Otherwise the Service pipe will soon be severed by |  | 
|  13   // the Service Manager, signaling that shutdown may proceed at the service's |  | 
|  14   // own discretion. |  | 
|  15   RequestQuit(); |  | 
|  16 }; |  | 
| OLD | NEW |