OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/policy_constants.h" | 5 #include "chrome/common/policy_constants.h" |
6 | 6 |
7 namespace policy { | 7 namespace policy { |
8 | 8 |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #if defined(GOOGLE_CHROME_BUILD) | 10 #if defined(GOOGLE_CHROME_BUILD) |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 const char kDefaultNotificationSetting[] = "DefaultNotificationSetting"; | 68 const char kDefaultNotificationSetting[] = "DefaultNotificationSetting"; |
69 const char kDefaultGeolocationSetting[] = "DefaultGeolocationSetting"; | 69 const char kDefaultGeolocationSetting[] = "DefaultGeolocationSetting"; |
70 const char kAuthSchemes[] = "AuthSchemes"; | 70 const char kAuthSchemes[] = "AuthSchemes"; |
71 const char kDisableAuthNegotiateCnameLookup[] = | 71 const char kDisableAuthNegotiateCnameLookup[] = |
72 "DisableAuthNegotiateCnameLookup"; | 72 "DisableAuthNegotiateCnameLookup"; |
73 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; | 73 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; |
74 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; | 74 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; |
75 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; | 75 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; |
76 const char kGSSAPILibraryName[] = "GSSAPILibraryName"; | 76 const char kGSSAPILibraryName[] = "GSSAPILibraryName"; |
77 const char kDisable3DAPIs[] = "Disable3DAPIs"; | 77 const char kDisable3DAPIs[] = "Disable3DAPIs"; |
| 78 const char kPolicyRefreshRate[] = "PolicyRefreshRate"; |
78 | 79 |
79 // Chrome Frame specific policy constants | 80 // Chrome Frame specific policy constants |
80 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; | 81 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; |
81 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; | 82 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; |
82 const char kRenderInHostList[] = "RenderInHostList"; | 83 const char kRenderInHostList[] = "RenderInHostList"; |
83 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; | 84 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; |
84 | 85 |
85 #if defined(OS_CHROMEOS) | 86 #if defined(OS_CHROMEOS) |
86 // ChromeOS policy constants | 87 // ChromeOS policy constants |
87 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; | 88 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; |
88 #endif | 89 #endif |
89 | 90 |
90 } // namespace key | 91 } // namespace key |
91 | 92 |
92 } // namespace policy | 93 } // namespace policy |
OLD | NEW |