| OLD | NEW |
| 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_PASSWORD_PASSWORD_UI_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_PASSWORD_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 | 9 |
| 10 namespace autofill { | 10 namespace autofill { |
| 11 struct PasswordForm; | 11 struct PasswordForm; |
| 12 } | 12 } |
| 13 | 13 |
| 14 class Profile; | 14 class Profile; |
| 15 | 15 |
| 16 namespace passwords_ui { | |
| 17 | |
| 18 // An interface for a passwords UI View. A UI view is responsible for | 16 // An interface for a passwords UI View. A UI view is responsible for |
| 19 // displaying passwords in the UI and routing UI commands to the | 17 // displaying passwords in the UI and routing UI commands to the |
| 20 // PasswordManagerPresenter. | 18 // PasswordManagerPresenter. |
| 21 class PasswordUIView { | 19 class PasswordUIView { |
| 22 public: | 20 public: |
| 23 virtual ~PasswordUIView() {} | 21 virtual ~PasswordUIView() {} |
| 24 | 22 |
| 25 // Returns the profile associated with the currently active profile. | 23 // Returns the profile associated with the currently active profile. |
| 26 virtual Profile* GetProfile() = 0; | 24 virtual Profile* GetProfile() = 0; |
| 27 | 25 |
| 28 // Reveals the password for the saved password entry at |index| in the UI. | 26 // Reveals the password for the saved password entry at |index| in the UI. |
| 29 // |index| the index of the saved password entry. | 27 // |index| the index of the saved password entry. |
| 30 // |password_value| the value of saved password entry at |index|. | 28 // |password_value| the value of saved password entry at |index|. |
| 31 virtual void ShowPassword(size_t index, const string16& password_value) = 0; | 29 virtual void ShowPassword(size_t index, const string16& password_value) = 0; |
| 32 | 30 |
| 33 // Updates the list of passwords in the UI. | 31 // Updates the list of passwords in the UI. |
| 34 // |password_list| the list of saved password entries. | 32 // |password_list| the list of saved password entries. |
| 35 // |show_passwords| true if the passwords should be shown in the UI. | 33 // |show_passwords| true if the passwords should be shown in the UI. |
| 36 virtual void SetPasswordList( | 34 virtual void SetPasswordList( |
| 37 const ScopedVector<autofill::PasswordForm>& password_list, | 35 const ScopedVector<autofill::PasswordForm>& password_list, |
| 38 bool show_passwords) = 0; | 36 bool show_passwords) = 0; |
| 39 | 37 |
| 40 // Updates the list of password exceptions in the UI. | 38 // Updates the list of password exceptions in the UI. |
| 41 // |password_exception_list| The list of saved password exceptions. | 39 // |password_exception_list| The list of saved password exceptions. |
| 42 virtual void SetPasswordExceptionList( | 40 virtual void SetPasswordExceptionList( |
| 43 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0; | 41 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0; |
| 44 }; | 42 }; |
| 45 | 43 |
| 46 } // namespace passwords_ui | 44 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ |
| 47 | |
| 48 #endif // CHROME_BROWSER_UI_PASSWORD_PASSWORD_UI_VIEW_H_ | |
| OLD | NEW |