| OLD | NEW |
| 1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
| 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 | 3 |
| 4 <?define EventSourceName = "chromoting" ?> | 4 <?define EventSourceName = "chromoting" ?> |
| 5 <?define ServiceName = "chromoting" ?> | 5 <?define ServiceName = "chromoting" ?> |
| 6 | 6 |
| 7 <?ifdef OfficialBuild ?> | 7 <?if $(var.Branding) ~= Chrome ?> |
| 8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> | 8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> |
| 9 <?define FirewallName = "Chrome Remote Desktop Host" ?> | 9 <?define FirewallName = "Chrome Remote Desktop Host" ?> |
| 10 <?define Manufacturer = "Google Inc." ?> | 10 <?define Manufacturer = "Google Inc." ?> |
| 11 <?else?> | 11 <?else?> |
| 12 <?define ChromotingHost = "Chromoting Host" ?> | 12 <?define ChromotingHost = "Chromoting Host" ?> |
| 13 <?define FirewallName = "Chromoting Host" ?> | 13 <?define FirewallName = "Chromoting Host" ?> |
| 14 <?define Manufacturer = "The Chromium Authors" ?> | 14 <?define Manufacturer = "The Chromium Authors" ?> |
| 15 <?endif?> | 15 <?endif?> |
| 16 | 16 |
| 17 <?define OmahaAppid = "{b210701e-ffc4-49e3-932b-370728c72662}" ?> | 17 <?define OmahaAppid = "{b210701e-ffc4-49e3-932b-370728c72662}" ?> |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 | 327 |
| 328 <InstallExecuteSequence> | 328 <InstallExecuteSequence> |
| 329 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> | 329 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> |
| 330 <Custom Action="set_auto_start_service" After="StartServices"> | 330 <Custom Action="set_auto_start_service" After="StartServices"> |
| 331 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> | 331 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> |
| 332 </Custom> | 332 </Custom> |
| 333 </InstallExecuteSequence> | 333 </InstallExecuteSequence> |
| 334 | 334 |
| 335 </Product> | 335 </Product> |
| 336 </Wix> | 336 </Wix> |
| OLD | NEW |