blob: 0996b1d1d28f4db0c7b02474bda45f5d7f80c005 [file] [log] [blame]
// Copyright 2021 The Chromium 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 = "proto2";
option optimize_for = LITE_RUNTIME;
package chromeos.assistant;
// Metadata for the response back to the user.
message SettingsResponseHeader {
enum AcceptRejectLayout {
// Unspecified layout for buttons.
UNSPECIFIED = 0;
// Accept is filled on RHS, Reject is filled on LHS.
EQUAL_WEIGHT = 1;
}
// Controls the way the accept and reject buttons are rendered.
optional AcceptRejectLayout footer_button_layout = 2;
}