blob: 3557cb70591a4a510aa14cc2cc638f20a533676a [file] [log] [blame]
// Copyright 2024 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/web_applications/web_app_ui_state_manager.h"
namespace web_app {
WebAppUiStateManager::WebAppUiStateManager() = default;
WebAppUiStateManager::~WebAppUiStateManager() = default;
void WebAppUiStateManager::NotifyWebAppWindowDidEnterForeground(
const webapps::AppId app_id) {}
void WebAppUiStateManager::NotifyWebAppWindowWillEnterBackground(
const webapps::AppId app_id) {}
void WebAppUiStateManager::NotifyWebAppWindowDidBecomeActive(
const webapps::AppId app_id) {}
void WebAppUiStateManager::NotifyWebAppWindowDidBecomeInactive(
const webapps::AppId app_id) {}
} // namespace web_app