| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // A handful of resource-like constants related to the ChromeELF. | 5 // A handful of resource-like constants related to the ChromeELF. |
| 6 | 6 |
| 7 #ifndef CHROME_ELF_CHROME_ELF_CONSTANTS_H_ | 7 #ifndef CHROME_ELF_CHROME_ELF_CONSTANTS_H_ |
| 8 #define CHROME_ELF_CHROME_ELF_CONSTANTS_H_ | 8 #define CHROME_ELF_CHROME_ELF_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include <windows.h> | 10 #include <windows.h> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 namespace elf_sec { | 41 namespace elf_sec { |
| 42 | 42 |
| 43 // The registry path of the finch "emergency-off" | 43 // The registry path of the finch "emergency-off" |
| 44 // switch for sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 44 // switch for sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 45 extern const wchar_t kRegSecurityFinchPath[]; | 45 extern const wchar_t kRegSecurityFinchPath[]; |
| 46 | 46 |
| 47 // The registry path for any early-browser security settings. | 47 // The registry path for any early-browser security settings. |
| 48 extern const wchar_t kRegSecurityPath[]; | 48 extern const wchar_t kRegSecurityPath[]; |
| 49 } | 49 } |
| 50 | 50 |
| 51 // The name of the function exported by the ELF so that other modules in the |
| 52 // process may retrieve the process's InstallDetailsPayload. |
| 53 extern const char kChromeElfInstallDetailsPayloadFunctionName[]; |
| 54 |
| 51 #endif // CHROME_ELF_CHROME_ELF_CONSTANTS_H_ | 55 #endif // CHROME_ELF_CHROME_ELF_CONSTANTS_H_ |
| OLD | NEW |