Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BROWSER_KEYCHAIN_MIGRATION_STATUS_MAC_H | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_KEYCHAIN_MIGRATION_STATUS_MAC_H |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_KEYCHAIN_MIGRATION_STATUS_MAC_H | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_KEYCHAIN_MIGRATION_STATUS_MAC_H |
| 7 | 7 |
| 8 namespace password_manager { | 8 namespace password_manager { |
| 9 | 9 |
| 10 // Status of password migration from the Keychain. | 10 // Status of password migration from the Keychain. |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 | 22 |
| 23 // Migration failed twice. It should not be tried again. | 23 // Migration failed twice. It should not be tried again. |
| 24 FAILED_TWICE, | 24 FAILED_TWICE, |
| 25 | 25 |
| 26 // Migration finished successfully. The Keychain was cleaned up. | 26 // Migration finished successfully. The Keychain was cleaned up. |
| 27 MIGRATED_DELETED, | 27 MIGRATED_DELETED, |
| 28 | 28 |
| 29 // Best effort migration happened. Some passwords were inaccessible. | 29 // Best effort migration happened. Some passwords were inaccessible. |
| 30 MIGRATED_PARTIALLY, | 30 MIGRATED_PARTIALLY, |
| 31 | 31 |
| 32 // Gave up on migration as the passwords aren't accessible anyway after Chrome | |
| 33 // changes the certificate. | |
|
jdoerrie
2017/03/02 17:02:28
Could you add a link providing more information ho
| |
| 34 MIGRATION_STOPPED, | |
| 35 | |
| 32 MIGRATION_STATUS_COUNT, | 36 MIGRATION_STATUS_COUNT, |
| 33 }; | 37 }; |
| 34 | 38 |
| 35 } // namespace password_manager | 39 } // namespace password_manager |
| 36 | 40 |
| 37 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_KEYCHAIN_MIGRATION_STATUS_MA C_H | 41 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_KEYCHAIN_MIGRATION_STATUS_MA C_H |
| OLD | NEW |