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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImplementationFactory.java

Issue 1814133002: Added experimental Share API on Android behind flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ballista-share-requester-mojo-blink
Patch Set: Rebase. Created 4 years, 4 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.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.chrome.browser.webshare;
6
7 import org.chromium.content.browser.InterfaceRegistry.ImplementationFactory;
8 import org.chromium.content_public.browser.WebContents;
9 import org.chromium.mojom.webshare.ShareService;
10
11 /**
12 * Factory that creates instances of ShareService.
13 */
14 public class ShareServiceImplementationFactory implements ImplementationFactory< ShareService> {
15 private final WebContents mWebContents;
16
17 public ShareServiceImplementationFactory(WebContents webContents) {
18 mWebContents = webContents;
19 }
20
21 @Override
22 public ShareService createImpl() {
23 return new ShareServiceImpl(mWebContents);
24 }
25 }
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/webshare/ShareServiceImpl.java ('k') | chrome/android/java_sources.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698