// Copyright 2012 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/drive/file_errors.h" #include <type_traits> #include "base/notreached.h" #include "base/types/cxx23_to_underlying.h" namespace drive { std::ostream& operator<<(std::ostream& out, const FileError error) { … } std::string FileErrorToString(FileError error) { … } bool IsFileErrorOk(FileError error) { … } base::File::Error FileErrorToBaseFileError(FileError error) { … } FileError GDataToFileError(google_apis::ApiErrorCode status) { … } } // namespace drive