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