// 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/uninstall_result_code.h" #include <ostream> namespace webapps { bool UninstallSucceeded(UninstallResultCode code) { … } std::ostream& operator<<(std::ostream& os, UninstallResultCode code) { … } } // namespace webapps