Chromium Code Reviews| 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"; | |
| 1395 | |
|
brettw
2011/08/12 21:06:51
I'd only have one blank line here.
abeera
2011/08/15 16:23:06
Done.
| |
| 1393 | 1396 |
| 1394 // Preference to store proxy settings. | 1397 // Preference to store proxy settings. |
| 1395 const char kProxy[] = "proxy"; | 1398 const char kProxy[] = "proxy"; |
| 1396 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1399 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
| 1397 | 1400 |
| 1398 // Preferences that are exclusively used to store managed values for default | 1401 // Preferences that are exclusively used to store managed values for default |
| 1399 // content settings. | 1402 // content settings. |
| 1400 const char kManagedDefaultCookiesSetting[] = | 1403 const char kManagedDefaultCookiesSetting[] = |
| 1401 "profile.managed_default_content_settings.cookies"; | 1404 "profile.managed_default_content_settings.cookies"; |
| 1402 const char kManagedDefaultImagesSetting[] = | 1405 const char kManagedDefaultImagesSetting[] = |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1452 | 1455 |
| 1453 // Whether user-specified handlers for protocols and content types can be | 1456 // Whether user-specified handlers for protocols and content types can be |
| 1454 // specified. | 1457 // specified. |
| 1455 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1458 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1456 | 1459 |
| 1457 // Integers that specify the policy refresh rate for device- and user-policy in | 1460 // 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 | 1461 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1459 // by the cloud policy subsystem. | 1462 // by the cloud policy subsystem. |
| 1460 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1463 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1461 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1464 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1465 | |
| 1462 } // namespace prefs | 1466 } // namespace prefs |
| OLD | NEW |