| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 // Boolean that indicates whether to allow firewall traversal while trying to | 1342 // Boolean that indicates whether to allow firewall traversal while trying to |
| 1343 // establish the initial connection from the client or host. | 1343 // establish the initial connection from the client or host. |
| 1344 const char kRemoteAccessClientFirewallTraversal[] = | 1344 const char kRemoteAccessClientFirewallTraversal[] = |
| 1345 "remote_access.client_firewall_traversal"; | 1345 "remote_access.client_firewall_traversal"; |
| 1346 const char kRemoteAccessHostFirewallTraversal[] = | 1346 const char kRemoteAccessHostFirewallTraversal[] = |
| 1347 "remote_access.host_firewall_traversal"; | 1347 "remote_access.host_firewall_traversal"; |
| 1348 | 1348 |
| 1349 // The root URL of the cloud print service. | 1349 // The root URL of the cloud print service. |
| 1350 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1350 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
| 1351 | 1351 |
| 1352 // The URL to use to sign in to cloud print. |
| 1353 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
| 1354 |
| 1352 // The last requested size of the dialog as it was closed. | 1355 // The last requested size of the dialog as it was closed. |
| 1353 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1356 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1354 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1357 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1358 const char kCloudPrintSigninDialogWidth[] = |
| 1359 "cloud_print.signin_dialog_size.width"; |
| 1360 const char kCloudPrintSigninDialogHeight[] = |
| 1361 "cloud_print.signin_dialog_size.height"; |
| 1355 | 1362 |
| 1356 // The list of BackgroundContents that should be loaded when the browser | 1363 // The list of BackgroundContents that should be loaded when the browser |
| 1357 // launches. | 1364 // launches. |
| 1358 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1365 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1359 | 1366 |
| 1360 // String that lists supported HTTP authentication schemes. | 1367 // String that lists supported HTTP authentication schemes. |
| 1361 const char kAuthSchemes[] = "auth.schemes"; | 1368 const char kAuthSchemes[] = "auth.schemes"; |
| 1362 | 1369 |
| 1363 // Boolean that specifies whether to disable CNAME lookups when generating | 1370 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1364 // Kerberos SPN. | 1371 // Kerberos SPN. |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 // specified. | 1506 // specified. |
| 1500 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1507 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1501 | 1508 |
| 1502 // Integers that specify the policy refresh rate for device- and user-policy in | 1509 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1503 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1510 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1504 // by the cloud policy subsystem. | 1511 // by the cloud policy subsystem. |
| 1505 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1512 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1506 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1513 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1507 | 1514 |
| 1508 } // namespace prefs | 1515 } // namespace prefs |
| OLD | NEW |