// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/policy/core/common/cloud/dm_token.h" #include "base/check.h" namespace policy { // static DMToken DMToken::CreateValidToken(const std::string& value) { … } // static DMToken DMToken::CreateInvalidToken() { … } // static DMToken DMToken::CreateEmptyToken() { … } DMToken::DMToken(Status status, const std::string_view value) : … { … } const std::string& DMToken::value() const { … } bool DMToken::is_valid() const { … } bool DMToken::is_invalid() const { … } bool DMToken::is_empty() const { … } } // namespace policy