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 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1336 // server. | 1336 // server. |
1337 const char kCloudPrintEmail[] = "cloud_print.email"; | 1337 const char kCloudPrintEmail[] = "cloud_print.email"; |
1338 // Settings specific to underlying print system. | 1338 // Settings specific to underlying print system. |
1339 const char kCloudPrintPrintSystemSettings[] = | 1339 const char kCloudPrintPrintSystemSettings[] = |
1340 "cloud_print.print_system_settings"; | 1340 "cloud_print.print_system_settings"; |
1341 // A boolean indicating whether we should poll for print jobs when don't have | 1341 // A boolean indicating whether we should poll for print jobs when don't have |
1342 // an XMPP connection (false by default). | 1342 // an XMPP connection (false by default). |
1343 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 1343 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
1344 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 1344 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
1345 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 1345 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
| 1346 // Indicates whether the Mac Virtual driver is enabled. |
| 1347 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; |
| 1348 |
1346 | 1349 |
1347 // Preference to store proxy settings. | 1350 // Preference to store proxy settings. |
1348 const char kProxy[] = "proxy"; | 1351 const char kProxy[] = "proxy"; |
1349 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1352 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
1350 | 1353 |
1351 // Preferences that are exclusively used to store managed values for default | 1354 // Preferences that are exclusively used to store managed values for default |
1352 // content settings. | 1355 // content settings. |
1353 const char kManagedDefaultCookiesSetting[] = | 1356 const char kManagedDefaultCookiesSetting[] = |
1354 "profile.managed_default_content_settings.cookies"; | 1357 "profile.managed_default_content_settings.cookies"; |
1355 const char kManagedDefaultImagesSetting[] = | 1358 const char kManagedDefaultImagesSetting[] = |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 | 1408 |
1406 // Whether user-specified handlers for protocols and content types can be | 1409 // Whether user-specified handlers for protocols and content types can be |
1407 // specified. | 1410 // specified. |
1408 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1411 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1409 | 1412 |
1410 // Integers that specify the policy refresh rate for device- and user-policy in | 1413 // Integers that specify the policy refresh rate for device- and user-policy in |
1411 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1414 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1412 // by the cloud policy subsystem. | 1415 // by the cloud policy subsystem. |
1413 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1416 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1414 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1417 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1418 |
1415 } // namespace prefs | 1419 } // namespace prefs |
OLD | NEW |