blob: 6861801623d98fb9db826b1e506b859d6f9c9688 [file] [log] [blame]
// Copyright 2019 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.
// TODO(crbug.com/1227712): Migrate syntax and remove this.
library chromium.cast;
using fuchsia.mem;
using fuchsia.web;
/// Provides Cast platform API binding scripts and methods for connecting those
/// scripts with Agent backends.
@discoverable
protocol ApiBindings {
/// Gets the list of bindings to early-inject into the page at load time.
GetAll() -> (resource struct {
bindings vector<ApiBinding>;
});
/// Should be invoked when a connecting a named MessagePort to a native
/// bindings backend.
Connect(resource struct {
port_name string;
message_port client_end:fuchsia.web.MessagePort;
});
};
type ApiBinding = resource table {
/// Script to execute before the load of a web document.
1: before_load_script fuchsia.mem.Buffer;
};