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