blob: 794471b093eb02cf68e9366131a54c65218df376 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* Custom bindings for the mojoPrivate API.
*/
let binding = apiBridge || require('binding').Binding.create('mojoPrivate');
binding.registerCustomHook(function(bindingsAPI) {
let apiFunctions = bindingsAPI.apiFunctions;
apiFunctions.setHandleRequest('requireAsync', function(moduleName) {
return Promise.resolve(require(moduleName).returnValue);
});
});
if (!apiBridge)
exports.$set('binding', binding.generate());