blob: 183fe333955c14ab4651aea891281324749334a5 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_WEB_APPLICATIONS_COMPONENTS_WEB_APP_CALLBACK_APP_IDENTITY_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_COMPONENTS_WEB_APP_CALLBACK_APP_IDENTITY_H_
#include "base/callback.h"
namespace web_app {
// As part of evaluating a manifest update, the flow needs to take into
// consideration whether the app identity (name and icon) is changing and
// whether to allow that.
enum class AppIdentityUpdate {
kAllowed = 0,
kUninstall,
kSkipped,
};
using AppIdentityDialogCallback = base::OnceCallback<void(AppIdentityUpdate)>;
} // namespace web_app
#endif // CHROME_BROWSER_WEB_APPLICATIONS_COMPONENTS_WEB_APP_CALLBACK_APP_IDENTITY_H_