// Copyright 2021 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. // // **** DO NOT EDIT - this .proto was automatically generated. **** syntax = "proto3"; package cast.bindings; import "cast/cast_core/api/web/message_channel.proto"; option optimize_for = LITE_RUNTIME; message ApiBinding { // Script to execute before the load of a web document. string before_load_script = 1; } message GetAllRequest {} message GetAllResponse { repeated ApiBinding bindings = 1; } message ConnectRequest { string port_name = 1; cast.web.MessagePortDescriptor port = 2; } message ConnectResponse {}