[go: nahoru, domu]

blob: 531e56a17b7402d0f7ac68a66007bcda801a7b6c [file] [log] [blame]
// 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_ASH_ACCOUNT_MANAGER_ACCOUNT_MANAGER_UI_IMPL_H_
#define CHROME_BROWSER_ASH_ACCOUNT_MANAGER_ACCOUNT_MANAGER_UI_IMPL_H_
#include "base/functional/callback_forward.h"
#include "components/account_manager_core/account_addition_options.h"
#include "components/account_manager_core/chromeos/account_manager_ui.h"
namespace ash {
class AccountManagerUIImpl : public account_manager::AccountManagerUI {
public:
AccountManagerUIImpl();
AccountManagerUIImpl(const AccountManagerUIImpl&) = delete;
AccountManagerUIImpl& operator=(const AccountManagerUIImpl&) = delete;
~AccountManagerUIImpl() override;
private:
// AccountManagerUI overrides:
void ShowAddAccountDialog(
const account_manager::AccountAdditionOptions& options,
base::OnceClosure close_dialog_closure) override;
void ShowReauthAccountDialog(const std::string& email,
base::OnceClosure close_dialog_closure) override;
bool IsDialogShown() override;
void ShowManageAccountsSettings() override;
};
} // namespace ash
#endif // CHROME_BROWSER_ASH_ACCOUNT_MANAGER_ACCOUNT_MANAGER_UI_IMPL_H_