summaryrefslogtreecommitdiff
path: root/chromium/components/cryptauth/software_feature_state.cc
blob: 915b0d59d4c087874affd8c6fa3edbd71b4f5595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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 "components/cryptauth/software_feature_state.h"

namespace cryptauth {

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 cryptauth