OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | 2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> |
3 <!-- | 3 <!-- |
4 Have compatibility section here instead of using | 4 Have compatibility section here instead of using |
5 build/win/compatibility.manifest | 5 build/win/compatibility.manifest |
6 to work around crbug.com/272660. | 6 to work around crbug.com/272660. |
7 TODO(yukawa): Use build/win/compatibility.manifest again. | 7 TODO(yukawa): Use build/win/compatibility.manifest again. |
8 --> | 8 --> |
9 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | 9 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> |
10 <application> | 10 <application> |
11 <!--The ID below indicates application support for Windows Vista --> | 11 <!--The ID below indicates application support for Windows Vista --> |
12 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | 12 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> |
13 <!--The ID below indicates application support for Windows 7 --> | 13 <!--The ID below indicates application support for Windows 7 --> |
14 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | 14 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> |
15 <!--The ID below indicates application support for Windows 8 --> | 15 <!--The ID below indicates application support for Windows 8 --> |
16 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | 16 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> |
17 <!--The ID below indicates application support for Windows 8.1 --> | 17 <!--The ID below indicates application support for Windows 8.1 --> |
18 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | 18 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> |
| 19 <!--The ID below indicates application support for Windows 10 --> |
| 20 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> |
19 </application> | 21 </application> |
20 </compatibility> | 22 </compatibility> |
21 <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2"> | 23 <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2"> |
22 <ms_asmv2:security> | 24 <ms_asmv2:security> |
23 <ms_asmv2:requestedPrivileges> | 25 <ms_asmv2:requestedPrivileges> |
24 <ms_asmv2:requestedExecutionLevel level="asInvoker" /> | 26 <ms_asmv2:requestedExecutionLevel level="asInvoker" /> |
25 </ms_asmv2:requestedPrivileges> | 27 </ms_asmv2:requestedPrivileges> |
26 </ms_asmv2:security> | 28 </ms_asmv2:security> |
27 </ms_asmv2:trustInfo> | 29 </ms_asmv2:trustInfo> |
28 </assembly> | 30 </assembly> |
OLD | NEW |