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