// Copyright 2022 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/webapps/browser/install_result_code.h" #include <ostream> namespace webapps { bool IsSuccess(InstallResultCode code) { … } bool IsNewInstall(InstallResultCode code) { … } std::ostream& operator<<(std::ostream& os, InstallResultCode code) { … } } // namespace webapps