blob: 8f07a6e0a383b580b51045f2243039a885d0ebe4 [file] [log] [blame]
// weblayer/common/renderer_configuration.mojom.m.js is auto generated by mojom_bindings_generator.py, do not edit
// Copyright 2020 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.
import {mojo} from '../../mojo/public/js/bindings.js';
import {
ContentSettingsManagerRemote as contentSettings_mojom_ContentSettingsManagerRemote,
ContentSettingsManagerPendingReceiver as contentSettings_mojom_ContentSettingsManagerPendingReceiver
} from '../../components/content_settings/common/content_settings_manager.mojom.m.js';
/**
* @implements {mojo.internal.interfaceSupport.PendingReceiver}
*/
export class RendererConfigurationPendingReceiver {
/**
* @param {!MojoHandle|!mojo.internal.interfaceSupport.Endpoint} handle
*/
constructor(handle) {
/** @public {!mojo.internal.interfaceSupport.Endpoint} */
this.handle = mojo.internal.interfaceSupport.getEndpointForReceiver(handle);
}
/** @param {string=} scope */
bindInBrowser(scope = 'context') {
mojo.internal.interfaceSupport.bind(
this.handle, 'weblayer.mojom.RendererConfiguration', scope);
}
}
/** @interface */
export class RendererConfigurationInterface {
/**
* @param { ?contentSettings_mojom_ContentSettingsManagerRemote } contentSettingsManager
*/
setInitialConfiguration(contentSettingsManager) {}
}
/**
* @implements { RendererConfigurationInterface }
*/
export class RendererConfigurationRemote {
/** @param {MojoHandle|mojo.internal.interfaceSupport.Endpoint=} handle */
constructor(handle = undefined) {
/**
* @private {!mojo.internal.interfaceSupport.InterfaceRemoteBase<!RendererConfigurationPendingReceiver>}
*/
this.proxy =
new mojo.internal.interfaceSupport.InterfaceRemoteBase(
RendererConfigurationPendingReceiver,
handle);
/**
* @public {!mojo.internal.interfaceSupport.InterfaceRemoteBaseWrapper<!RendererConfigurationPendingReceiver>}
*/
this.$ = new mojo.internal.interfaceSupport.InterfaceRemoteBaseWrapper(this.proxy);
/** @public {!mojo.internal.interfaceSupport.ConnectionErrorEventRouter} */
this.onConnectionError = this.proxy.getConnectionErrorEventRouter();
}
/**
* @param { ?contentSettings_mojom_ContentSettingsManagerRemote } contentSettingsManager
*/
setInitialConfiguration(
contentSettingsManager) {
this.proxy.sendMessage(
2056289527,
RendererConfiguration_SetInitialConfiguration_ParamsSpec.$,
null,
[
contentSettingsManager
]);
}
}
/**
* An object which receives request messages for the RendererConfiguration
* mojom interface. Must be constructed over an object which implements that
* interface.
*/
export class RendererConfigurationReceiver {
/**
* @param {!RendererConfigurationInterface } impl
*/
constructor(impl) {
/** @private {!mojo.internal.interfaceSupport.InterfaceReceiverHelperInternal<!RendererConfigurationRemote>} */
this.helper_internal_ = new mojo.internal.interfaceSupport.InterfaceReceiverHelperInternal(
RendererConfigurationRemote);
/**
* @public {!mojo.internal.interfaceSupport.InterfaceReceiverHelper<!RendererConfigurationRemote>}
*/
this.$ = new mojo.internal.interfaceSupport.InterfaceReceiverHelper(this.helper_internal_);
this.helper_internal_.registerHandler(
2056289527,
RendererConfiguration_SetInitialConfiguration_ParamsSpec.$,
null,
impl.setInitialConfiguration.bind(impl));
/** @public {!mojo.internal.interfaceSupport.ConnectionErrorEventRouter} */
this.onConnectionError = this.helper_internal_.getConnectionErrorEventRouter();
}
}
export class RendererConfiguration {
/**
* @return {!string}
*/
static get $interfaceName() {
return "weblayer.mojom.RendererConfiguration";
}
/**
* Returns a remote for this interface which sends messages to the browser.
* The browser must have an interface request binder registered for this
* interface and accessible to the calling document's frame.
*
* @return {!RendererConfigurationRemote}
*/
static getRemote() {
let remote = new RendererConfigurationRemote;
remote.$.bindNewPipeAndPassReceiver().bindInBrowser();
return remote;
}
}
/**
* An object which receives request messages for the RendererConfiguration
* mojom interface and dispatches them as callbacks. One callback receiver exists
* on this object for each message defined in the mojom interface, and each
* receiver can have any number of listeners added to it.
*/
export class RendererConfigurationCallbackRouter {
constructor() {
this.helper_internal_ = new mojo.internal.interfaceSupport.InterfaceReceiverHelperInternal(
RendererConfigurationRemote);
/**
* @public {!mojo.internal.interfaceSupport.InterfaceReceiverHelper<!RendererConfigurationRemote>}
*/
this.$ = new mojo.internal.interfaceSupport.InterfaceReceiverHelper(this.helper_internal_);
this.router_ = new mojo.internal.interfaceSupport.CallbackRouter;
/**
* @public {!mojo.internal.interfaceSupport.InterfaceCallbackReceiver}
*/
this.setInitialConfiguration =
new mojo.internal.interfaceSupport.InterfaceCallbackReceiver(
this.router_);
this.helper_internal_.registerHandler(
2056289527,
RendererConfiguration_SetInitialConfiguration_ParamsSpec.$,
null,
this.setInitialConfiguration.createReceiverHandler(false /* expectsResponse */));
/** @public {!mojo.internal.interfaceSupport.ConnectionErrorEventRouter} */
this.onConnectionError = this.helper_internal_.getConnectionErrorEventRouter();
}
/**
* @param {number} id An ID returned by a prior call to addListener.
* @return {boolean} True iff the identified listener was found and removed.
*/
removeListener(id) {
return this.router_.removeListener(id);
}
}
/**
* @const { {$:!mojo.internal.MojomType}}
*/
export const RendererConfiguration_SetInitialConfiguration_ParamsSpec =
{ $: /** @type {!mojo.internal.MojomType} */ ({}) };
mojo.internal.Struct(
RendererConfiguration_SetInitialConfiguration_ParamsSpec.$,
'RendererConfiguration_SetInitialConfiguration_Params',
[
mojo.internal.StructField(
'contentSettingsManager', 0,
0,
mojo.internal.InterfaceProxy(contentSettings_mojom_ContentSettingsManagerRemote),
null,
true /* nullable */,
0),
],
[[0, 16],]);
/**
* @record
*/
export class RendererConfiguration_SetInitialConfiguration_Params {
constructor() {
/** @type { (contentSettings_mojom_ContentSettingsManagerRemote|undefined) } */
this.contentSettingsManager;
}
}