OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 extern const char kEnableHyperlinkAuditing[]; | 399 extern const char kEnableHyperlinkAuditing[]; |
400 extern const char kEnableReferrers[]; | 400 extern const char kEnableReferrers[]; |
401 extern const char kEnableDoNotTrack[]; | 401 extern const char kEnableDoNotTrack[]; |
402 | 402 |
403 extern const char kImportBookmarks[]; | 403 extern const char kImportBookmarks[]; |
404 extern const char kImportHistory[]; | 404 extern const char kImportHistory[]; |
405 extern const char kImportHomepage[]; | 405 extern const char kImportHomepage[]; |
406 extern const char kImportSearchEngine[]; | 406 extern const char kImportSearchEngine[]; |
407 extern const char kImportSavedPasswords[]; | 407 extern const char kImportSavedPasswords[]; |
408 | 408 |
409 extern const char kEnterpriseWebStoreURL[]; | |
410 extern const char kEnterpriseWebStoreName[]; | |
411 | |
412 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 409 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
413 extern const char kLocalProfileId[]; | 410 extern const char kLocalProfileId[]; |
414 extern const char kPasswordsUseLocalProfileId[]; | 411 extern const char kPasswordsUseLocalProfileId[]; |
415 #endif | 412 #endif |
416 | 413 |
417 extern const char kProfileAvatarIndex[]; | 414 extern const char kProfileAvatarIndex[]; |
418 extern const char kProfileName[]; | 415 extern const char kProfileName[]; |
419 extern const char kProfileIsManaged[]; | 416 extern const char kProfileIsManaged[]; |
420 | 417 |
421 extern const char kInvertNotificationShown[]; | 418 extern const char kInvertNotificationShown[]; |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 extern const char kAppListLaunchCount[]; | 920 extern const char kAppListLaunchCount[]; |
924 extern const char kLastAppListAppLaunchPing[]; | 921 extern const char kLastAppListAppLaunchPing[]; |
925 extern const char kAppListAppLaunchCount[]; | 922 extern const char kAppListAppLaunchCount[]; |
926 | 923 |
927 extern const char kDRMSalt[]; | 924 extern const char kDRMSalt[]; |
928 extern const char kEnableDRM[]; | 925 extern const char kEnableDRM[]; |
929 | 926 |
930 } // namespace prefs | 927 } // namespace prefs |
931 | 928 |
932 #endif // CHROME_COMMON_PREF_NAMES_H_ | 929 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |