blob: 3647ebf48759f061fa5c3bc6a56f1b975aadc0cf [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.
#include "vm_tools/cicerone/crash_listener_impl.h"
namespace vm_tools {
namespace cicerone {
grpc::Status CrashListenerImpl::CheckMetricsConsent(
grpc::ServerContext* ctx,
const EmptyMessage* request,
MetricsConsentResponse* response) {
response->set_consent_granted(metrics_.AreMetricsEnabled());
return grpc::Status::OK;
}
} // namespace cicerone
} // namespace vm_tools