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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 | 1405 |
1406 // Whether user-specified handlers for protocols and content types can be | 1406 // Whether user-specified handlers for protocols and content types can be |
1407 // specified. | 1407 // specified. |
1408 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1408 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1409 | 1409 |
1410 // Integers that specify the policy refresh rate for device- and user-policy in | 1410 // 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 | 1411 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1412 // by the cloud policy subsystem. | 1412 // by the cloud policy subsystem. |
1413 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1413 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1414 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1414 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1415 |
| 1416 const char kVirtualPrinterDriverEnabled[] = "virtual_driver.enabled"; |
1415 } // namespace prefs | 1417 } // namespace prefs |
OLD | NEW |