| 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 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 last requested size of the dialog as it was closed. | 1352 // The last requested size of the dialog as it was closed. |
| 1353 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1353 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1354 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1354 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1355 const char kCloudPrintSigninDialogWidth[] = |
| 1356 "cloud_print.signin_dialog_size.width"; |
| 1357 const char kCloudPrintSigninDialogHeight[] = |
| 1358 "cloud_print.signin_dialog_size.height"; |
| 1355 | 1359 |
| 1356 // The list of BackgroundContents that should be loaded when the browser | 1360 // The list of BackgroundContents that should be loaded when the browser |
| 1357 // launches. | 1361 // launches. |
| 1358 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1362 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1359 | 1363 |
| 1360 // String that lists supported HTTP authentication schemes. | 1364 // String that lists supported HTTP authentication schemes. |
| 1361 const char kAuthSchemes[] = "auth.schemes"; | 1365 const char kAuthSchemes[] = "auth.schemes"; |
| 1362 | 1366 |
| 1363 // Boolean that specifies whether to disable CNAME lookups when generating | 1367 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1364 // Kerberos SPN. | 1368 // Kerberos SPN. |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 // specified. | 1503 // specified. |
| 1500 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1504 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1501 | 1505 |
| 1502 // Integers that specify the policy refresh rate for device- and user-policy in | 1506 // 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 | 1507 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1504 // by the cloud policy subsystem. | 1508 // by the cloud policy subsystem. |
| 1505 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1509 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1506 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1510 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1507 | 1511 |
| 1508 } // namespace prefs | 1512 } // namespace prefs |
| OLD | NEW |