// 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. #ifndef CHROME_BROWSER_APPS_APP_SERVICE_PAUSED_APPS_H_ #define CHROME_BROWSER_APPS_APP_SERVICE_PAUSED_APPS_H_ #include <set> #include <string> #include <utility> #include "components/services/app_service/public/cpp/app.h" #include "components/services/app_service/public/cpp/app_types.h" namespace apps { // PausedApps saves apps which have been paused for a specific publisher. The // paused app can't be launched, until it is unpaused. class PausedApps { … }; } // namespace apps #endif // CHROME_BROWSER_APPS_APP_SERVICE_PAUSED_APPS_H_