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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698