blob: 7d891f54843aab5aa98f0efa6befc3dd37422fe4 [file] [log] [blame]
// Copyright 2021 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.
#ifndef OOBE_CONFIG_NETWORK_EXPORTER_H_
#define OOBE_CONFIG_NETWORK_EXPORTER_H_
#include <string>
#include <base/optional.h>
namespace oobe_config {
// Exports network configuration for rollback from Chrome. Only call with the
// oobe_config_save user and while Chrome and shill are running.
base::Optional<std::string> ExportNetworkConfig();
} // namespace oobe_config
#endif // OOBE_CONFIG_NETWORK_EXPORTER_H_