blob: 087d7a4aad31f1169233645eddc6c09cbd196124 [file] [log] [blame]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option cc_enable_arenas = true;
// This file defines services for tremplin, the container springboard service.
package vm_tools.cicerone;
import "common.proto";
message MetricsConsentResponse {
bool consent_granted = 1;
}
// Service that is notified of events from tremplin.
service CrashListener {
rpc CheckMetricsConsent(EmptyMessage) returns (MetricsConsentResponse);
// If adding more rpc's, please update ContainerListenerFuzzerSingleAction as
// well.
}