| 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_PREF_NAMES_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 namespace password_manager { | 10 namespace password_manager { |
| 11 namespace prefs { | 11 namespace prefs { |
| 12 | 12 |
| 13 // Alphabetical list of preference names specific to the PasswordManager | 13 // Alphabetical list of preference names specific to the PasswordManager |
| 14 // component. | 14 // component. |
| 15 | 15 |
| 16 // The value of this preference controls whether the Password Manager will save | 16 // The value of this preference controls whether the Password Manager will save |
| 17 // credentials. When it is false, it doesn't ask if you want to save passwords | 17 // credentials. When it is false, it doesn't ask if you want to save passwords |
| 18 // but will continue to fill passwords. This preference in a future will | 18 // but will continue to fill passwords. This preference in a future will |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 extern const char kWasAutoSignInFirstRunExperienceShown[]; | 70 extern const char kWasAutoSignInFirstRunExperienceShown[]; |
| 71 | 71 |
| 72 // Boolean that indicated whether first run experience for the save prompt was | 72 // Boolean that indicated whether first run experience for the save prompt was |
| 73 // shown or not. | 73 // shown or not. |
| 74 extern const char kWasSavePrompFirstRunExperienceShown[]; | 74 extern const char kWasSavePrompFirstRunExperienceShown[]; |
| 75 | 75 |
| 76 } // namespace prefs | 76 } // namespace prefs |
| 77 } // namespace password_manager | 77 } // namespace password_manager |
| 78 | 78 |
| 79 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H
_ | 79 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H
_ |
| OLD | NEW |