blob: 23e734dea3e2a595a4e116958a0e031559721d16 [file] [log] [blame]
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 GetAllResponse {
repeated ApiBinding bindings = 1;
}
message ConnectRequest {
string port_name = 1;
cast.web.MessagePortDescriptor port = 2;
}