blob: 00e1f698adf38c9ffb25b538938ac3354921ebf2 [file] [log] [blame]
// Copyright 2018 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.
#include "ash/components/multidevice/software_feature_state.h"
namespace ash::multidevice {
std::ostream& operator<<(std::ostream& stream,
const SoftwareFeatureState& state) {
switch (state) {
case SoftwareFeatureState::kNotSupported:
stream << "[not supported]";
break;
case SoftwareFeatureState::kSupported:
stream << "[supported]";
break;
case SoftwareFeatureState::kEnabled:
stream << "[enabled]";
break;
}
return stream;
}
} // namespace ash::multidevice