Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: chrome/browser/ui/passwords/password_ui_view.h

Issue 1142693003: Implement the chrome.passwordsPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stevenjb comment. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_
6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ 6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_
7 7
8 #include "base/memory/scoped_vector.h" 8 #include "base/memory/scoped_vector.h"
9 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 10
11 namespace autofill { 11 namespace autofill {
12 struct PasswordForm; 12 struct PasswordForm;
13 } 13 }
14 14
15 class Profile; 15 class Profile;
16 16
17 // An interface for a passwords UI View. A UI view is responsible for 17 // An interface for a passwords UI View. A UI view is responsible for
18 // displaying passwords in the UI and routing UI commands to the 18 // displaying passwords in the UI and routing UI commands to the
19 // PasswordManagerPresenter. 19 // PasswordManagerPresenter.
20 class PasswordUIView { 20 class PasswordUIView {
21 public: 21 public:
22 virtual ~PasswordUIView() {} 22 virtual ~PasswordUIView() {}
23 23
24 // Returns the profile associated with the currently active profile. 24 // Returns the profile associated with the currently active profile.
25 virtual Profile* GetProfile() = 0; 25 virtual Profile* GetProfile() = 0;
26 26
27 // Reveals the password for the saved password entry at |index| in the UI. 27 // Reveals the password for the saved password entry.
28 // |index| the index of the saved password entry. 28 // |index| the index of the saved password entry.
29 // |origin_url| the URL of the saved password entry; obtained via
30 // GetHumanReadableOrigin().
31 // |username| the username of the saved password entry.
29 // |password_value| the value of saved password entry at |index|. 32 // |password_value| the value of saved password entry at |index|.
30 virtual void ShowPassword(size_t index, 33 virtual void ShowPassword(size_t index,
34 const std::string& origin_url,
35 const std::string& username,
31 const base::string16& password_value) = 0; 36 const base::string16& password_value) = 0;
32 37
33 // Updates the list of passwords in the UI. 38 // Updates the list of passwords in the UI.
34 // |password_list| the list of saved password entries. 39 // |password_list| the list of saved password entries.
35 // |show_passwords| true if the passwords should be shown in the UI. 40 // |show_passwords| true if the passwords should be shown in the UI.
36 virtual void SetPasswordList( 41 virtual void SetPasswordList(
37 const ScopedVector<autofill::PasswordForm>& password_list, 42 const ScopedVector<autofill::PasswordForm>& password_list,
38 bool show_passwords) = 0; 43 bool show_passwords) = 0;
39 44
40 // Updates the list of password exceptions in the UI. 45 // Updates the list of password exceptions in the UI.
41 // |password_exception_list| The list of saved password exceptions. 46 // |password_exception_list| The list of saved password exceptions.
42 virtual void SetPasswordExceptionList( 47 virtual void SetPasswordExceptionList(
43 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0; 48 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0;
44 #if !defined(OS_ANDROID) 49 #if !defined(OS_ANDROID)
45 // Returns the top level NativeWindow for the view. 50 // Returns the top level NativeWindow for the view.
46 virtual gfx::NativeWindow GetNativeWindow() const = 0; 51 virtual gfx::NativeWindow GetNativeWindow() const = 0;
47 #endif 52 #endif
48 }; 53 };
49 54
50 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ 55 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698