chromium/chrome/browser/ui/passwords/credential_manager_dialog_controller.h

// Copyright 2015 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_UI_PASSWORDS_CREDENTIAL_MANAGER_DIALOG_CONTROLLER_H_
#define CHROME_BROWSER_UI_PASSWORDS_CREDENTIAL_MANAGER_DIALOG_CONTROLLER_H_

#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "chrome/browser/ui/passwords/password_base_dialog_controller.h"
#include "components/password_manager/core/common/credential_manager_types.h"
#include "ui/gfx/range/range.h"

namespace password_manager {
struct PasswordForm;
}  // namespace password_manager

// An interface used by the password dialog (the account chooser) for setting
// and retrieving the state.
class CredentialManagerDialogController : public PasswordBaseDialogController {};

#endif  // CHROME_BROWSER_UI_PASSWORDS_CREDENTIAL_MANAGER_DIALOG_CONTROLLER_H_