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

Side by Side Diff: ios/web/webui/resources/interface_provider.js

Issue 2946383002: Support new-style Mojo JS core API on IOS. (Closed)
Patch Set: .. Created 3 years, 6 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 // Module "content/public/renderer/frame_interfaces"
6 //
7 // This module provides the JavaScript bindings for
8 // services/service_manager/public/cpp/connection.h.
9 // Refer to that file for more detailed documentation for equivalent methods.
10
11 define("content/public/renderer/frame_interfaces", [
12 "ios/mojo/public/js/sync_message_channel",
13 "ios/mojo/public/js/handle_util",
14 ], function(syncMessageChannel, handleUtil) {
15
16 /**
17 * Binds to specified Mojo interface.
18 * @param {string} getInterface interface name to connect.
19 * @return {!MojoResult} Result code.
20 */
21 function getInterface(interfaceName) {
22 var nativeHandle = syncMessageChannel.sendMessage({
23 name: "interface_provider.getInterface",
24 args: {
25 interfaceName: interfaceName
26 }
27 });
28 return handleUtil.getJavaScriptHandle(nativeHandle);
29 }
30
31 var exports = {};
32 exports.getInterface = getInterface;
33 return exports;
34 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698