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