OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
Sam McNally
2016/04/01 02:51:25
This should be in third_party/WebKit/public/platfo
Matt Giuca
2016/04/12 06:12:21
Done.
| |
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 content; | |
Sam McNally
2016/04/01 02:51:25
module blink.mojom;
Matt Giuca
2016/04/12 06:12:21
Done.
| |
6 | |
7 interface BallistaService { | |
8 // The web contents has requested to send a share text action. Returns null on | |
9 // success, or an error message on failure. | |
10 Share(string title, string text) => (string? error); | |
11 }; | |
OLD | NEW |