| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 extern const char kPrintingEnabled[]; | 52 extern const char kPrintingEnabled[]; |
| 53 extern const char kJavascriptEnabled[]; | 53 extern const char kJavascriptEnabled[]; |
| 54 extern const char kSavingBrowserHistoryDisabled[]; | 54 extern const char kSavingBrowserHistoryDisabled[]; |
| 55 extern const char kDeveloperToolsDisabled[]; | 55 extern const char kDeveloperToolsDisabled[]; |
| 56 extern const char kBlockThirdPartyCookies[]; | 56 extern const char kBlockThirdPartyCookies[]; |
| 57 extern const char kAuthSchemes[]; | 57 extern const char kAuthSchemes[]; |
| 58 extern const char kDisableAuthNegotiateCnameLookup[]; | 58 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 59 extern const char kEnableAuthNegotiatePort[]; | 59 extern const char kEnableAuthNegotiatePort[]; |
| 60 extern const char kAuthServerWhitelist[]; | 60 extern const char kAuthServerWhitelist[]; |
| 61 extern const char kAuthNegotiateDelegateWhitelist[]; | 61 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 62 extern const char kGSSAPILibraryName[]; |
| 62 | 63 |
| 63 // Chrome Frame specific policy constants | 64 // Chrome Frame specific policy constants |
| 64 extern const char kChromeFrameRendererSettings[]; | 65 extern const char kChromeFrameRendererSettings[]; |
| 65 extern const char kRenderInChromeFrameList[]; | 66 extern const char kRenderInChromeFrameList[]; |
| 66 extern const char kRenderInHostList[]; | 67 extern const char kRenderInHostList[]; |
| 67 extern const char kChromeFrameContentTypes[]; | 68 extern const char kChromeFrameContentTypes[]; |
| 68 | 69 |
| 69 #if defined(OS_CHROMEOS) | 70 #if defined(OS_CHROMEOS) |
| 70 // ChromeOS policy constants | 71 // ChromeOS policy constants |
| 71 extern const char kChromeOsLockOnIdleSuspend[]; | 72 extern const char kChromeOsLockOnIdleSuspend[]; |
| 72 #endif | 73 #endif |
| 73 | 74 |
| 74 } // namespace key | 75 } // namespace key |
| 75 | 76 |
| 76 } // namespace policy | 77 } // namespace policy |
| 77 | 78 |
| 78 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ | 79 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |
| OLD | NEW |