summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/passwords/manage_passwords_icon_view.h
blob: 36bc4842a11c3d00f011c42b6f4699488f18d59d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2015 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_UI_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEW_H_
#define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEW_H_

#include "base/macros.h"
#include "components/password_manager/core/common/password_manager_ui.h"

// An interface for updating the passwords icon in the location bar.
class ManagePasswordsIconView {
 public:
  ManagePasswordsIconView() {}

  virtual void SetState(password_manager::ui::State state) = 0;

 private:
  DISALLOW_COPY_AND_ASSIGN(ManagePasswordsIconView);
};

#endif  // CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEW_H_