blob: 206007e3a345763a912256af51c801db0b143daa [file] [log] [blame]
// Copyright 2018 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 optimize_for = LITE_RUNTIME;
package plugin_vm_service;
// Content of licensing data emitted by Chrome as a response to the
// GetLicenseData call in org.chromium.PluginVmService.
message GetLicenseDataResponse {
string license_key = 1; // The PluginVm license key for the OU.
string device_id = 2; // The current directory API ID.
}
// Show the specified PluginVm settings subpage.
message ShowSettingsPageRequest {
string subpage_path = 1; // The subpage path.
}