blob: a5b8a1023810ba95dede814b5dd893df1d605120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright 2013 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_VIEWS_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEWS_H_
#include "base/macros.h"
#include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
#include "chrome/browser/ui/passwords/manage_passwords_icon_view.h"
#include "chrome/browser/ui/views/location_bar/bubble_icon_view.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "ui/views/controls/image_view.h"
class CommandUpdater;
class ManagePasswordsUIController;
// View for the password icon in the Omnibox.
class ManagePasswordsIconViews : public ManagePasswordsIconView,
public BubbleIconView {
public:
explicit ManagePasswordsIconViews(CommandUpdater* updater);
~ManagePasswordsIconViews() override;
// ManagePasswordsIconView:
void SetState(password_manager::ui::State state) override;
// BubbleIconView:
void OnExecuting(BubbleIconView::ExecuteSource source) override;
bool OnMousePressed(const ui::MouseEvent& event) override;
bool OnKeyPressed(const ui::KeyEvent& event) override;
views::BubbleDialogDelegateView* GetBubble() const override;
gfx::VectorIconId GetVectorIcon() const override;
// views::View:
void AboutToRequestFocusFromTabTraversal(bool reverse) override;
private:
friend class ManagePasswordsIconViewTest;
// Updates the UI to match |state_|.
void UpdateUiForState();
password_manager::ui::State state_;
DISALLOW_COPY_AND_ASSIGN(ManagePasswordsIconViews);
};
#endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_ICON_VIEWS_H_
|