| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 | 8 |
| 10 namespace password_manager { | 9 namespace password_manager { |
| 11 | 10 |
| 12 namespace ui { | 11 namespace ui { |
| 13 | 12 |
| 14 // The current state of the password manager's UI. | 13 // The current state of the password manager's UI. |
| 15 enum State { | 14 enum State { |
| 16 // The password manager has nothing to do with the current site. | 15 // The password manager has nothing to do with the current site. |
| 17 INACTIVE_STATE, | 16 INACTIVE_STATE, |
| 18 | 17 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 // The user submitted a form that we consider to be a change password form. | 36 // The user submitted a form that we consider to be a change password form. |
| 38 // Chrome needs to ask the user to confirm password updating. | 37 // Chrome needs to ask the user to confirm password updating. |
| 39 PENDING_PASSWORD_UPDATE_STATE, | 38 PENDING_PASSWORD_UPDATE_STATE, |
| 40 }; | 39 }; |
| 41 | 40 |
| 42 } // namespace ui | 41 } // namespace ui |
| 43 | 42 |
| 44 } // namespace password_manager | 43 } // namespace password_manager |
| 45 | 44 |
| 46 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ | 45 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ |
| OLD | NEW |