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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 const char kDefaultNotificationSetting[] = "DefaultNotificationSetting"; | 69 const char kDefaultNotificationSetting[] = "DefaultNotificationSetting"; |
70 const char kDefaultGeolocationSetting[] = "DefaultGeolocationSetting"; | 70 const char kDefaultGeolocationSetting[] = "DefaultGeolocationSetting"; |
71 const char kAuthSchemes[] = "AuthSchemes"; | 71 const char kAuthSchemes[] = "AuthSchemes"; |
72 const char kDisableAuthNegotiateCnameLookup[] = | 72 const char kDisableAuthNegotiateCnameLookup[] = |
73 "DisableAuthNegotiateCnameLookup"; | 73 "DisableAuthNegotiateCnameLookup"; |
74 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; | 74 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; |
75 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; | 75 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; |
76 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; | 76 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; |
77 const char kGSSAPILibraryName[] = "GSSAPILibraryName"; | 77 const char kGSSAPILibraryName[] = "GSSAPILibraryName"; |
78 const char kDisable3DAPIs[] = "Disable3DAPIs"; | 78 const char kDisable3DAPIs[] = "Disable3DAPIs"; |
| 79 const char kPolicyRefreshRate[] = "PolicyRefreshRate"; |
79 | 80 |
80 // Chrome Frame specific policy constants | 81 // Chrome Frame specific policy constants |
81 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; | 82 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; |
82 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; | 83 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; |
83 const char kRenderInHostList[] = "RenderInHostList"; | 84 const char kRenderInHostList[] = "RenderInHostList"; |
84 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; | 85 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; |
85 | 86 |
86 #if defined(OS_CHROMEOS) | 87 #if defined(OS_CHROMEOS) |
87 // ChromeOS policy constants | 88 // ChromeOS policy constants |
88 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; | 89 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; |
89 #endif | 90 #endif |
90 | 91 |
91 } // namespace key | 92 } // namespace key |
92 | 93 |
93 } // namespace policy | 94 } // namespace policy |
OLD | NEW |