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 #ifndef CHROME_COMMON_POLICY_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_POLICY_CONSTANTS_H_ |
6 #define CHROME_COMMON_POLICY_CONSTANTS_H_ | 6 #define CHROME_COMMON_POLICY_CONSTANTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 extern const char kDefaultPopupsSetting[]; | 63 extern const char kDefaultPopupsSetting[]; |
64 extern const char kDefaultNotificationSetting[]; | 64 extern const char kDefaultNotificationSetting[]; |
65 extern const char kDefaultGeolocationSetting[]; | 65 extern const char kDefaultGeolocationSetting[]; |
66 extern const char kAuthSchemes[]; | 66 extern const char kAuthSchemes[]; |
67 extern const char kDisableAuthNegotiateCnameLookup[]; | 67 extern const char kDisableAuthNegotiateCnameLookup[]; |
68 extern const char kEnableAuthNegotiatePort[]; | 68 extern const char kEnableAuthNegotiatePort[]; |
69 extern const char kAuthServerWhitelist[]; | 69 extern const char kAuthServerWhitelist[]; |
70 extern const char kAuthNegotiateDelegateWhitelist[]; | 70 extern const char kAuthNegotiateDelegateWhitelist[]; |
71 extern const char kGSSAPILibraryName[]; | 71 extern const char kGSSAPILibraryName[]; |
72 extern const char kDisable3DAPIs[]; | 72 extern const char kDisable3DAPIs[]; |
| 73 extern const char kPolicyRefreshRate[]; |
73 | 74 |
74 // Chrome Frame specific policy constants | 75 // Chrome Frame specific policy constants |
75 extern const char kChromeFrameRendererSettings[]; | 76 extern const char kChromeFrameRendererSettings[]; |
76 extern const char kRenderInChromeFrameList[]; | 77 extern const char kRenderInChromeFrameList[]; |
77 extern const char kRenderInHostList[]; | 78 extern const char kRenderInHostList[]; |
78 extern const char kChromeFrameContentTypes[]; | 79 extern const char kChromeFrameContentTypes[]; |
79 | 80 |
80 #if defined(OS_CHROMEOS) | 81 #if defined(OS_CHROMEOS) |
81 // ChromeOS policy constants | 82 // ChromeOS policy constants |
82 extern const char kChromeOsLockOnIdleSuspend[]; | 83 extern const char kChromeOsLockOnIdleSuspend[]; |
83 #endif | 84 #endif |
84 | 85 |
85 } // namespace key | 86 } // namespace key |
86 | 87 |
87 } // namespace policy | 88 } // namespace policy |
88 | 89 |
89 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ | 90 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |
OLD | NEW |