Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: components/password_manager/core/common/password_manager_pref_names.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698