| 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 #include "build/build_config.h" |
| 5 #include "components/password_manager/core/common/password_manager_pref_names.h" | 6 #include "components/password_manager/core/common/password_manager_pref_names.h" |
| 6 | 7 |
| 7 namespace password_manager { | 8 namespace password_manager { |
| 8 namespace prefs { | 9 namespace prefs { |
| 9 | 10 |
| 10 const char kCredentialsEnableService[] = "credentials_enable_service"; | 11 const char kCredentialsEnableService[] = "credentials_enable_service"; |
| 11 | 12 |
| 12 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 13 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
| 13 const char kLocalProfileId[] = "profile.local_profile_id"; | 14 const char kLocalProfileId[] = "profile.local_profile_id"; |
| 14 #endif | 15 #endif |
| (...skipping 17 matching lines...) Expand all Loading... |
| 32 "profile.password_manager_groups_for_domains"; | 33 "profile.password_manager_groups_for_domains"; |
| 33 | 34 |
| 34 const char kWasAutoSignInFirstRunExperienceShown[] = | 35 const char kWasAutoSignInFirstRunExperienceShown[] = |
| 35 "profile.was_auto_sign_in_first_run_experience_shown"; | 36 "profile.was_auto_sign_in_first_run_experience_shown"; |
| 36 | 37 |
| 37 const char kWasSavePrompFirstRunExperienceShown[] = | 38 const char kWasSavePrompFirstRunExperienceShown[] = |
| 38 "profile.was_save_prompt_first_run_experience_shown"; | 39 "profile.was_save_prompt_first_run_experience_shown"; |
| 39 | 40 |
| 40 } // namespace prefs | 41 } // namespace prefs |
| 41 } // namespace password_manager | 42 } // namespace password_manager |
| OLD | NEW |