Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4336)

Unified Diff: content/common/ballista_service.mojom

Issue 1806253002: Added Web Share (navigator.share) experimental web API (stub). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
+};

Powered by Google App Engine
This is Rietveld 408576698