Chromium Code Reviews| Index: content/common/ballista_service.mojom |
| diff --git a/content/common/ballista_service.mojom b/content/common/ballista_service.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a15494b445de53806fcb37b3fde14b0ba4e9d47b |
| --- /dev/null |
| +++ b/content/common/ballista_service.mojom |
| @@ -0,0 +1,11 @@ |
| +// 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.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +module content; |
|
Sam McNally
2016/04/01 02:51:25
module blink.mojom;
Matt Giuca
2016/04/12 06:12:21
Done.
|
| + |
| +interface BallistaService { |
| + // The web contents has requested to send a share text action. Returns null on |
| + // success, or an error message on failure. |
| + Share(string title, string text) => (string? error); |
| +}; |