Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: tests/AppManifest.xml.expect

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Left Patch Set: Address comments on patch set 1 Created June 17, 2016, 5:51 p.m.
Right Patch Set: Address Windows Store issues with blockmap and devbuild display name Created Oct. 14, 2016, 12:07 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « templates/testIndex.html.tmpl ('k') | tests/metadata.edge » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <Package 3 <Package
4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" 6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
7 IgnorableNamespaces="uap3"> 7 IgnorableNamespaces="uap3">
8 8
9 <Identity 9 <Identity
10 Name="EyeoGmbH.AdblockPlus" 10 Name="EyeoGmbH.AdblockPlus"
Sebastian Noack 2016/07/01 15:56:04 Please don't hard-code publisher, product name and
Vasily Kuznetsov 2016/07/01 19:51:28 Well, this file is part of a test. In the template
11 Publisher="CN=4F066043-8AFE-41C9-B762-6C15E77E3F88" 11 Publisher="CN=4F066043-8AFE-41C9-B762-6C15E77E3F88"
12 Version="1.3.3.7" /> 12 Version="1.2.3.0" />
13 13
14 <Properties> 14 <Properties>
15 <DisplayName>Adblock Plus</DisplayName> 15 <DisplayName>Adblock Plus</DisplayName>
16 <PublisherDisplayName>Eyeo GmbH</PublisherDisplayName> 16 <PublisherDisplayName>Eyeo GmbH</PublisherDisplayName>
17 <Logo>Assets\logo_50.png</Logo> 17 <Logo>Assets\logo_50.png</Logo>
18 </Properties> 18 </Properties>
19 19
20 <Dependencies> 20 <Dependencies>
21 <TargetDeviceFamily 21 <TargetDeviceFamily
22 Name="Windows.Desktop" 22 Name="Windows.Desktop"
(...skipping 11 matching lines...) Expand all
34 AppListEntry="none" 34 AppListEntry="none"
35 DisplayName="Adblock Plus" 35 DisplayName="Adblock Plus"
36 Square150x150Logo="Assets\logo_150.png" 36 Square150x150Logo="Assets\logo_150.png"
37 Square44x44Logo="Assets\logo_44.png" 37 Square44x44Logo="Assets\logo_44.png"
38 Description="Adblock Plus is the most popular ad blocker ever, and also supports websites by not blocking unobstrusive ads by default (configurable)." 38 Description="Adblock Plus is the most popular ad blocker ever, and also supports websites by not blocking unobstrusive ads by default (configurable)."
39 BackgroundColor="red"> 39 BackgroundColor="red">
40 </uap:VisualElements> 40 </uap:VisualElements>
41 <Extensions> 41 <Extensions>
42 <uap3:Extension Category="windows.appExtension"> 42 <uap3:Extension Category="windows.appExtension">
43 <uap3:AppExtension Name="com.microsoft.edge.extension" 43 <uap3:AppExtension Name="com.microsoft.edge.extension"
44 Id="1.0" 44 Id="EdgeExtension"
45 PublicFolder="Extension" 45 PublicFolder="Extension"
46 DisplayName="Adblock Plus"> 46 DisplayName="Adblock Plus">
47 <uap3:Properties>
48 <Capabilities>
49 <Capability Name="websiteContent"/>
50 <Capability Name="browserStorage"/>
51 <Capability Name="websiteInfo"/>
52 <Capability Name="browserWebRequest"/>
53 </Capabilities>
54 </uap3:Properties>
47 </uap3:AppExtension> 55 </uap3:AppExtension>
48 </uap3:Extension> 56 </uap3:Extension>
49 </Extensions> 57 </Extensions>
50 </Application> 58 </Application>
51 </Applications> 59 </Applications>
52 60
53 </Package> 61 </Package>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld