// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

syntax = "proto2";

package gapis_pb;

option java_multiple_files = true;
option java_package = "org.chromium.components.gapis.proto";
option optimize_for = LITE_RUNTIME;

message ObtainTokenRequest {
  optional string signed_challenge = 1;
}

message ObtainTokenResponse {
  optional string token = 1;
}
