OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [JavaPackage="org.chromium.mojom.sharing"] | 5 [JavaPackage="org.chromium.mojom.sharing"] |
6 module sharing_sink; | 6 module sharing_sink; |
7 | 7 |
8 // Private interface for the shell. When the shell connects to the sharing | 8 // Private interface for the shell. When the shell connects to the sharing |
9 // service this interface will be returned which can be used to send shareable | 9 // service this interface will be returned which can be used to send shareable |
10 // data to registered apps. | 10 // data to registered apps. |
| 11 [ServiceName="sharing_sink::SharingSink"] |
11 interface SharingSink { | 12 interface SharingSink { |
12 OnTextShared(string data); | 13 OnTextShared(string data); |
13 }; | 14 }; |
OLD | NEW |