| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 extern const char kWebAppCreateOnDesktop[]; | 365 extern const char kWebAppCreateOnDesktop[]; |
| 366 extern const char kWebAppCreateInAppsMenu[]; | 366 extern const char kWebAppCreateInAppsMenu[]; |
| 367 extern const char kWebAppCreateInQuickLaunchBar[]; | 367 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 368 | 368 |
| 369 extern const char kGeolocationAccessToken[]; | 369 extern const char kGeolocationAccessToken[]; |
| 370 extern const char kGeolocationDefaultContentSetting[]; | 370 extern const char kGeolocationDefaultContentSetting[]; |
| 371 extern const char kGeolocationContentSettings[]; | 371 extern const char kGeolocationContentSettings[]; |
| 372 | 372 |
| 373 extern const char kLoginDatabaseMigrated[]; | 373 extern const char kLoginDatabaseMigrated[]; |
| 374 | 374 |
| 375 extern const char kCloudPrintServiceURL[]; |
| 376 extern const char kCloudPrintDialogWidth[]; |
| 377 extern const char kCloudPrintDialogHeight[]; |
| 375 extern const char kCloudPrintProxyEnabled[]; | 378 extern const char kCloudPrintProxyEnabled[]; |
| 376 extern const char kCloudPrintServiceURL[]; | |
| 377 extern const char kCloudPrintProxyId[]; | 379 extern const char kCloudPrintProxyId[]; |
| 378 extern const char kCloudPrintAuthToken[]; | 380 extern const char kCloudPrintAuthToken[]; |
| 379 extern const char kCloudPrintXMPPAuthToken[]; | 381 extern const char kCloudPrintXMPPAuthToken[]; |
| 380 extern const char kCloudPrintEmail[]; | 382 extern const char kCloudPrintEmail[]; |
| 381 extern const char kCloudPrintPrintSystemSettings[]; | 383 extern const char kCloudPrintPrintSystemSettings[]; |
| 382 | 384 |
| 383 extern const char kRemotingHasSetupCompleted[]; | 385 extern const char kRemotingHasSetupCompleted[]; |
| 384 extern const char kRemotingHostEnabled[]; | 386 extern const char kRemotingHostEnabled[]; |
| 385 | 387 |
| 386 extern const char kNoProxyServer[]; | 388 extern const char kNoProxyServer[]; |
| 387 extern const char kProxyAutoDetect[]; | 389 extern const char kProxyAutoDetect[]; |
| 388 extern const char kProxyServer[]; | 390 extern const char kProxyServer[]; |
| 389 extern const char kProxyPacUrl[]; | 391 extern const char kProxyPacUrl[]; |
| 390 extern const char kProxyBypassList[]; | 392 extern const char kProxyBypassList[]; |
| 391 | 393 |
| 392 #if defined(OS_CHROMEOS) | 394 #if defined(OS_CHROMEOS) |
| 393 extern const char kSignedSettingsTempStorage[]; | 395 extern const char kSignedSettingsTempStorage[]; |
| 394 #endif | 396 #endif |
| 395 | 397 |
| 396 extern const char kRegisteredBackgroundContents[]; | 398 extern const char kRegisteredBackgroundContents[]; |
| 397 | 399 |
| 398 } // namespace prefs | 400 } // namespace prefs |
| 399 | 401 |
| 400 #endif // CHROME_COMMON_PREF_NAMES_H_ | 402 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |