// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/apps/app_service/paused_apps.h" #include "base/containers/contains.h" namespace apps { PausedApps::PausedApps() = default; PausedApps::~PausedApps() = default; AppPtr PausedApps::CreateAppWithPauseStatus(AppType app_type, const std::string& app_id, bool paused) { … } bool PausedApps::MaybeAddApp(const std::string& app_id) { … } bool PausedApps::MaybeRemoveApp(const std::string& app_id) { … } bool PausedApps::IsPaused(const std::string& app_id) { … } } // namespace apps