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 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1322 const char kCloudPrintPrintSystemSettings[] = | 1322 const char kCloudPrintPrintSystemSettings[] = |
1323 "cloud_print.print_system_settings"; | 1323 "cloud_print.print_system_settings"; |
1324 // A boolean indicating whether we should poll for print jobs when don't have | 1324 // A boolean indicating whether we should poll for print jobs when don't have |
1325 // an XMPP connection (false by default). | 1325 // an XMPP connection (false by default). |
1326 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 1326 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
1327 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 1327 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
1328 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 1328 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
1329 | 1329 |
1330 // Preference to story proxy settings. | 1330 // Preference to story proxy settings. |
1331 const char kProxy[] = "proxy"; | 1331 const char kProxy[] = "proxy"; |
| 1332 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
1332 | 1333 |
1333 // Preferences that are exclusivly used to store managed values for default | 1334 // Preferences that are exclusivly used to store managed values for default |
1334 // content settings. | 1335 // content settings. |
1335 const char kManagedDefaultCookiesSetting[] = | 1336 const char kManagedDefaultCookiesSetting[] = |
1336 "profile.managed_default_content_settings.cookies"; | 1337 "profile.managed_default_content_settings.cookies"; |
1337 const char kManagedDefaultImagesSetting[] = | 1338 const char kManagedDefaultImagesSetting[] = |
1338 "profile.managed_default_content_settings.images"; | 1339 "profile.managed_default_content_settings.images"; |
1339 const char kManagedDefaultJavaScriptSetting[] = | 1340 const char kManagedDefaultJavaScriptSetting[] = |
1340 "profile.managed_default_content_settings.javascript"; | 1341 "profile.managed_default_content_settings.javascript"; |
1341 const char kManagedDefaultPluginsSetting[] = | 1342 const char kManagedDefaultPluginsSetting[] = |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 // Whether user-specified handlers for protocols and content types can be | 1387 // Whether user-specified handlers for protocols and content types can be |
1387 // specified. | 1388 // specified. |
1388 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1389 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1389 | 1390 |
1390 // Integers that specify the policy refresh rate for device- and user-policy in | 1391 // Integers that specify the policy refresh rate for device- and user-policy in |
1391 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1392 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1392 // by the cloud policy subsystem. | 1393 // by the cloud policy subsystem. |
1393 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1394 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1394 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1395 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1395 } // namespace prefs | 1396 } // namespace prefs |
OLD | NEW |