| 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 { | 16 namespace passwords_ui { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 38 bool show_passwords) = 0; | 38 bool show_passwords) = 0; |
| 39 | 39 |
| 40 // Updates the list of password exceptions in the UI. | 40 // Updates the list of password exceptions in the UI. |
| 41 // |password_exception_list| The list of saved password exceptions. | 41 // |password_exception_list| The list of saved password exceptions. |
| 42 virtual void SetPasswordExceptionList( | 42 virtual void SetPasswordExceptionList( |
| 43 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0; | 43 const ScopedVector<autofill::PasswordForm>& password_exception_list) = 0; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace passwords_ui | 46 } // namespace passwords_ui |
| 47 | 47 |
| 48 #endif // CHROME_BROWSER_UI_PASSWORD_PASSWORD_UI_VIEW_H_ | 48 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_UI_VIEW_H_ |
| OLD | NEW |