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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 const char kJavascriptEnabled[] = "JavascriptEnabled"; | 56 const char kJavascriptEnabled[] = "JavascriptEnabled"; |
57 const char kSavingBrowserHistoryDisabled[] = "SavingBrowserHistoryDisabled"; | 57 const char kSavingBrowserHistoryDisabled[] = "SavingBrowserHistoryDisabled"; |
58 const char kDeveloperToolsDisabled[] = "DeveloperToolsDisabled"; | 58 const char kDeveloperToolsDisabled[] = "DeveloperToolsDisabled"; |
59 const char kBlockThirdPartyCookies[] = "BlockThirdPartyCookies"; | 59 const char kBlockThirdPartyCookies[] = "BlockThirdPartyCookies"; |
60 const char kAuthSchemes[] = "AuthSchemes"; | 60 const char kAuthSchemes[] = "AuthSchemes"; |
61 const char kDisableAuthNegotiateCnameLookup[] = | 61 const char kDisableAuthNegotiateCnameLookup[] = |
62 "DisableAuthNegotiateCnameLookup"; | 62 "DisableAuthNegotiateCnameLookup"; |
63 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; | 63 const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; |
64 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; | 64 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; |
65 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; | 65 const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; |
| 66 const char kGSSAPILibraryName[] = "GSSAPILibraryName"; |
66 | 67 |
67 // Chrome Frame specific policy constants | 68 // Chrome Frame specific policy constants |
68 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; | 69 const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; |
69 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; | 70 const char kRenderInChromeFrameList[] = "RenderInChromeFrameList"; |
70 const char kRenderInHostList[] = "RenderInHostList"; | 71 const char kRenderInHostList[] = "RenderInHostList"; |
71 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; | 72 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; |
72 | 73 |
73 #if defined(OS_CHROMEOS) | 74 #if defined(OS_CHROMEOS) |
74 // ChromeOS policy constants | 75 // ChromeOS policy constants |
75 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; | 76 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; |
76 #endif | 77 #endif |
77 | 78 |
78 } // namespace key | 79 } // namespace key |
79 | 80 |
80 } // namespace policy | 81 } // namespace policy |
OLD | NEW |