blob: 817eee87041aa36e5f4f71ab63a50cdff6e27095 [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 oobe_config;
// Data we want to save before rollback and restore after it happened.
message RollbackData {
// Whether metrics are enabled.
bool eula_send_statistics = 1;
// Whether the EULA has already been accepted.
bool eula_auto_accept = 2;
// Network configuration in ONC format.
string network_config = 3;
}