// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/files/safe_base_name.h" namespace base { // static std::optional<SafeBaseName> SafeBaseName::Create(const FilePath& path) { … } // static std::optional<SafeBaseName> SafeBaseName::Create( FilePath::StringPieceType path) { … } SafeBaseName::SafeBaseName(const FilePath& path) : … { … } bool SafeBaseName::operator==(const SafeBaseName& that) const { … } } // namespace base