Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: chrome/app/chrome.exe.manifest

Issue 19275010: Embed compatibility manifest into all *.exe files (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: style fix Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/win/compatibility.manifest ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> 4 <!--The compatibility section will be merged from build/win/compatibility.mani fest -->
5 <application> 5
6 <!--The ID below indicates application support for Windows Vista -->
7 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
8 <!--The ID below indicates application support for Windows 7 -->
9 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
10 <!--The ID below indicates application support for Windows 8 -->
11 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
12 <!--The ID below indicates application support for Windows 8.1 -->
13 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
14 </application>
15 </compatibility>
16
17 <dependency> 6 <dependency>
18 <dependentAssembly> 7 <dependentAssembly>
19 <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" ve rsion="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" lang uage="*"></assemblyIdentity> 8 <assemblyIdentity type="Win32" name="Microsoft.Windows.Common-Controls" ve rsion="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" lang uage="*"></assemblyIdentity>
20 </dependentAssembly> 9 </dependentAssembly>
21 </dependency> 10 </dependency>
22 11
23 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> 12 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
24 <security> 13 <security>
25 <requestedPrivileges> 14 <requestedPrivileges>
26 <requestedExecutionLevel level="asInvoker" /> 15 <requestedExecutionLevel level="asInvoker" />
27 </requestedPrivileges> 16 </requestedPrivileges>
28 </security> 17 </security>
29 </trustInfo> 18 </trustInfo>
30 19
31 </assembly> 20 </assembly>
OLDNEW
« no previous file with comments | « build/win/compatibility.manifest ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698