| 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 1372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 // server. | 1383 // server. |
| 1384 const char kCloudPrintEmail[] = "cloud_print.email"; | 1384 const char kCloudPrintEmail[] = "cloud_print.email"; |
| 1385 // Settings specific to underlying print system. | 1385 // Settings specific to underlying print system. |
| 1386 const char kCloudPrintPrintSystemSettings[] = | 1386 const char kCloudPrintPrintSystemSettings[] = |
| 1387 "cloud_print.print_system_settings"; | 1387 "cloud_print.print_system_settings"; |
| 1388 // A boolean indicating whether we should poll for print jobs when don't have | 1388 // A boolean indicating whether we should poll for print jobs when don't have |
| 1389 // an XMPP connection (false by default). | 1389 // an XMPP connection (false by default). |
| 1390 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 1390 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
| 1391 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 1391 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
| 1392 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 1392 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
| 1393 // Indicates whether the Mac Virtual driver is enabled. |
| 1394 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; |
| 1393 | 1395 |
| 1394 // Preference to store proxy settings. | 1396 // Preference to store proxy settings. |
| 1395 const char kProxy[] = "proxy"; | 1397 const char kProxy[] = "proxy"; |
| 1396 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1398 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
| 1397 | 1399 |
| 1398 // Preferences that are exclusively used to store managed values for default | 1400 // Preferences that are exclusively used to store managed values for default |
| 1399 // content settings. | 1401 // content settings. |
| 1400 const char kManagedDefaultCookiesSetting[] = | 1402 const char kManagedDefaultCookiesSetting[] = |
| 1401 "profile.managed_default_content_settings.cookies"; | 1403 "profile.managed_default_content_settings.cookies"; |
| 1402 const char kManagedDefaultImagesSetting[] = | 1404 const char kManagedDefaultImagesSetting[] = |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 | 1454 |
| 1453 // Whether user-specified handlers for protocols and content types can be | 1455 // Whether user-specified handlers for protocols and content types can be |
| 1454 // specified. | 1456 // specified. |
| 1455 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1457 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1456 | 1458 |
| 1457 // Integers that specify the policy refresh rate for device- and user-policy in | 1459 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1458 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1460 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1459 // by the cloud policy subsystem. | 1461 // by the cloud policy subsystem. |
| 1460 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1462 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1461 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1463 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1464 |
| 1462 } // namespace prefs | 1465 } // namespace prefs |
| OLD | NEW |