blob: e9d6b03390ee27d7705b399180cc44ac8691f8a2 [file] [log] [blame]
// Copyright 2020 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 "services/network/trust_tokens/operating_system_matching.h"
#include "build/build_config.h"
namespace network {
bool IsCurrentOperatingSystem(mojom::TrustTokenKeyCommitmentResult::Os os) {
#if defined(OS_ANDROID)
return os == mojom::TrustTokenKeyCommitmentResult::Os::kAndroid;
#else
return false;
#endif
}
} // namespace network