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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 extern const char kSyncSessions[]; | 362 extern const char kSyncSessions[]; |
363 | 363 |
364 extern const char kSyncLastSyncedTime[]; | 364 extern const char kSyncLastSyncedTime[]; |
365 extern const char kSyncHasSetupCompleted[]; | 365 extern const char kSyncHasSetupCompleted[]; |
366 extern const char kKeepEverythingSynced[]; | 366 extern const char kKeepEverythingSynced[]; |
367 extern const char kSyncBookmarks[]; | 367 extern const char kSyncBookmarks[]; |
368 extern const char kSyncPasswords[]; | 368 extern const char kSyncPasswords[]; |
369 extern const char kSyncPreferences[]; | 369 extern const char kSyncPreferences[]; |
370 extern const char kSyncApps[]; | 370 extern const char kSyncApps[]; |
371 extern const char kSyncAutofill[]; | 371 extern const char kSyncAutofill[]; |
| 372 extern const char kSyncAutofill_profile[]; |
372 extern const char kSyncThemes[]; | 373 extern const char kSyncThemes[]; |
373 extern const char kSyncTypedUrls[]; | 374 extern const char kSyncTypedUrls[]; |
374 extern const char kSyncExtensions[]; | 375 extern const char kSyncExtensions[]; |
375 extern const char kSyncManaged[]; | 376 extern const char kSyncManaged[]; |
376 extern const char kSyncSuppressStart[]; | 377 extern const char kSyncSuppressStart[]; |
377 extern const char kGoogleServicesUsername[]; | 378 extern const char kGoogleServicesUsername[]; |
378 extern const char kSyncCredentialsMigrated[]; | 379 extern const char kSyncCredentialsMigrated[]; |
379 extern const char kSyncUsingSecondaryPassphrase[]; | 380 extern const char kSyncUsingSecondaryPassphrase[]; |
380 extern const char kEncryptionBootstrapToken[]; | 381 extern const char kEncryptionBootstrapToken[]; |
| 382 extern const char kAutofillProfileMigrated[]; |
381 | 383 |
382 extern const char kWebAppCreateOnDesktop[]; | 384 extern const char kWebAppCreateOnDesktop[]; |
383 extern const char kWebAppCreateInAppsMenu[]; | 385 extern const char kWebAppCreateInAppsMenu[]; |
384 extern const char kWebAppCreateInQuickLaunchBar[]; | 386 extern const char kWebAppCreateInQuickLaunchBar[]; |
385 | 387 |
386 extern const char kGeolocationAccessToken[]; | 388 extern const char kGeolocationAccessToken[]; |
387 extern const char kGeolocationDefaultContentSetting[]; | 389 extern const char kGeolocationDefaultContentSetting[]; |
388 extern const char kGeolocationContentSettings[]; | 390 extern const char kGeolocationContentSettings[]; |
389 | 391 |
390 extern const char kLoginDatabaseMigrated[]; | 392 extern const char kLoginDatabaseMigrated[]; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 extern const char kEnableAuthNegotiatePort[]; | 427 extern const char kEnableAuthNegotiatePort[]; |
426 extern const char kAuthServerWhitelist[]; | 428 extern const char kAuthServerWhitelist[]; |
427 extern const char kAuthNegotiateDelegateWhitelist[]; | 429 extern const char kAuthNegotiateDelegateWhitelist[]; |
428 extern const char kGSSAPILibraryName[]; | 430 extern const char kGSSAPILibraryName[]; |
429 | 431 |
430 extern const char kKnownBackgroundPages[]; | 432 extern const char kKnownBackgroundPages[]; |
431 | 433 |
432 } // namespace prefs | 434 } // namespace prefs |
433 | 435 |
434 #endif // CHROME_COMMON_PREF_NAMES_H_ | 436 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |