OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 extern const char kSyncSessions[]; | 357 extern const char kSyncSessions[]; |
358 | 358 |
359 extern const char kSyncLastSyncedTime[]; | 359 extern const char kSyncLastSyncedTime[]; |
360 extern const char kSyncHasSetupCompleted[]; | 360 extern const char kSyncHasSetupCompleted[]; |
361 extern const char kKeepEverythingSynced[]; | 361 extern const char kKeepEverythingSynced[]; |
362 extern const char kSyncBookmarks[]; | 362 extern const char kSyncBookmarks[]; |
363 extern const char kSyncPasswords[]; | 363 extern const char kSyncPasswords[]; |
364 extern const char kSyncPreferences[]; | 364 extern const char kSyncPreferences[]; |
365 extern const char kSyncApps[]; | 365 extern const char kSyncApps[]; |
366 extern const char kSyncAutofill[]; | 366 extern const char kSyncAutofill[]; |
| 367 extern const char kSyncAutofill_profile[]; |
367 extern const char kSyncThemes[]; | 368 extern const char kSyncThemes[]; |
368 extern const char kSyncTypedUrls[]; | 369 extern const char kSyncTypedUrls[]; |
369 extern const char kSyncExtensions[]; | 370 extern const char kSyncExtensions[]; |
370 extern const char kSyncManaged[]; | 371 extern const char kSyncManaged[]; |
371 extern const char kSyncSuppressStart[]; | 372 extern const char kSyncSuppressStart[]; |
372 extern const char kGoogleServicesUsername[]; | 373 extern const char kGoogleServicesUsername[]; |
373 extern const char kSyncCredentialsMigrated[]; | 374 extern const char kSyncCredentialsMigrated[]; |
374 extern const char kSyncUsingSecondaryPassphrase[]; | 375 extern const char kSyncUsingSecondaryPassphrase[]; |
375 extern const char kEncryptionBootstrapToken[]; | 376 extern const char kEncryptionBootstrapToken[]; |
| 377 extern const char kAutofillProfileMigrated[]; |
376 | 378 |
377 extern const char kWebAppCreateOnDesktop[]; | 379 extern const char kWebAppCreateOnDesktop[]; |
378 extern const char kWebAppCreateInAppsMenu[]; | 380 extern const char kWebAppCreateInAppsMenu[]; |
379 extern const char kWebAppCreateInQuickLaunchBar[]; | 381 extern const char kWebAppCreateInQuickLaunchBar[]; |
380 | 382 |
381 extern const char kGeolocationAccessToken[]; | 383 extern const char kGeolocationAccessToken[]; |
382 extern const char kGeolocationDefaultContentSetting[]; | 384 extern const char kGeolocationDefaultContentSetting[]; |
383 extern const char kGeolocationContentSettings[]; | 385 extern const char kGeolocationContentSettings[]; |
384 | 386 |
385 extern const char kLoginDatabaseMigrated[]; | 387 extern const char kLoginDatabaseMigrated[]; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 extern const char kAuthSchemes[]; | 420 extern const char kAuthSchemes[]; |
419 extern const char kDisableAuthNegotiateCnameLookup[]; | 421 extern const char kDisableAuthNegotiateCnameLookup[]; |
420 extern const char kEnableAuthNegotiatePort[]; | 422 extern const char kEnableAuthNegotiatePort[]; |
421 extern const char kAuthServerWhitelist[]; | 423 extern const char kAuthServerWhitelist[]; |
422 extern const char kAuthNegotiateDelegateWhitelist[]; | 424 extern const char kAuthNegotiateDelegateWhitelist[]; |
423 extern const char kGSSAPILibraryName[]; | 425 extern const char kGSSAPILibraryName[]; |
424 | 426 |
425 } // namespace prefs | 427 } // namespace prefs |
426 | 428 |
427 #endif // CHROME_COMMON_PREF_NAMES_H_ | 429 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |