| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 extern const char kSyncBookmarks[]; | 335 extern const char kSyncBookmarks[]; |
| 336 extern const char kSyncPasswords[]; | 336 extern const char kSyncPasswords[]; |
| 337 extern const char kSyncPreferences[]; | 337 extern const char kSyncPreferences[]; |
| 338 extern const char kSyncApps[]; | 338 extern const char kSyncApps[]; |
| 339 extern const char kSyncAutofill[]; | 339 extern const char kSyncAutofill[]; |
| 340 extern const char kSyncThemes[]; | 340 extern const char kSyncThemes[]; |
| 341 extern const char kSyncTypedUrls[]; | 341 extern const char kSyncTypedUrls[]; |
| 342 extern const char kSyncExtensions[]; | 342 extern const char kSyncExtensions[]; |
| 343 extern const char kSyncManaged[]; | 343 extern const char kSyncManaged[]; |
| 344 extern const char kSyncSuppressStart[]; | 344 extern const char kSyncSuppressStart[]; |
| 345 extern const char kGoogleServicesUsername[]; |
| 346 extern const char kSyncCredentialsMigrated[]; |
| 345 extern const char kEncryptionBootstrapToken[]; | 347 extern const char kEncryptionBootstrapToken[]; |
| 346 | 348 |
| 347 extern const char kWebAppCreateOnDesktop[]; | 349 extern const char kWebAppCreateOnDesktop[]; |
| 348 extern const char kWebAppCreateInAppsMenu[]; | 350 extern const char kWebAppCreateInAppsMenu[]; |
| 349 extern const char kWebAppCreateInQuickLaunchBar[]; | 351 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 350 | 352 |
| 351 extern const char kGeolocationAccessToken[]; | 353 extern const char kGeolocationAccessToken[]; |
| 352 extern const char kGeolocationDefaultContentSetting[]; | 354 extern const char kGeolocationDefaultContentSetting[]; |
| 353 extern const char kGeolocationContentSettings[]; | 355 extern const char kGeolocationContentSettings[]; |
| 354 | 356 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 369 extern const char kProxyAutoDetect[]; | 371 extern const char kProxyAutoDetect[]; |
| 370 extern const char kProxyServer[]; | 372 extern const char kProxyServer[]; |
| 371 extern const char kProxyPacUrl[]; | 373 extern const char kProxyPacUrl[]; |
| 372 extern const char kProxyBypassList[]; | 374 extern const char kProxyBypassList[]; |
| 373 | 375 |
| 374 extern const char kRegisteredBackgroundContents[]; | 376 extern const char kRegisteredBackgroundContents[]; |
| 375 | 377 |
| 376 } // namespace prefs | 378 } // namespace prefs |
| 377 | 379 |
| 378 #endif // CHROME_COMMON_PREF_NAMES_H_ | 380 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |