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

Side by Side Diff: remoting/host/installer/chromoting.wxs

Issue 10832054: Removing --host-binary parameter in preparation to the coming me2me host refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/host/sas_injector_win.cc » ('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"?> 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 <!-- TODO(alexeypa): There strings should be localized, 7 <!-- TODO(alexeypa): There strings should be localized,
8 see http://crbug.com/121785 --> 8 see http://crbug.com/121785 -->
9 <?if $(var.Branding) ~= Chrome ?> 9 <?if $(var.Branding) ~= Chrome ?>
10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> 10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?>
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 KeyPath="yes" 126 KeyPath="yes"
127 Name="remoting_service.exe" 127 Name="remoting_service.exe"
128 Vital="yes"/> 128 Vital="yes"/>
129 129
130 <ServiceInstall Id="install_service" 130 <ServiceInstall Id="install_service"
131 Type="ownProcess" 131 Type="ownProcess"
132 Vital="yes" 132 Vital="yes"
133 Name="$(var.ServiceName)" 133 Name="$(var.ServiceName)"
134 DisplayName="[chromoting_service_display_name]" 134 DisplayName="[chromoting_service_display_name]"
135 Description="[chromoting_service_description]" 135 Description="[chromoting_service_description]"
136 Arguments="--host-binary=&quot;[binaries]remoting_me2me_ host.exe&quot; --auth-config=&quot;[config_files]host.json&quot; --host-config=& quot;[config_files]host.json&quot;" 136 Arguments="--auth-config=&quot;[config_files]host.json&q uot; --host-config=&quot;[config_files]host.json&quot;"
137 Start="demand" 137 Start="demand"
138 Account="LocalSystem" 138 Account="LocalSystem"
139 ErrorControl="ignore" 139 ErrorControl="ignore"
140 Interactive="no" /> 140 Interactive="no" />
141 141
142 <ServiceControl Id="start_service" 142 <ServiceControl Id="start_service"
143 Stop="both" 143 Stop="both"
144 Remove="uninstall" 144 Remove="uninstall"
145 Name="$(var.ServiceName)" 145 Name="$(var.ServiceName)"
146 Wait="yes" /> 146 Wait="yes" />
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 </Custom> 410 </Custom>
411 <Custom Action="set_service_display_name" Before="InstallInitialize"> 411 <Custom Action="set_service_display_name" Before="InstallInitialize">
412 <![CDATA[VersionNT >= 600]]> 412 <![CDATA[VersionNT >= 600]]>
413 </Custom> 413 </Custom>
414 <Custom Action="set_service_description" Before="InstallInitialize"> 414 <Custom Action="set_service_description" Before="InstallInitialize">
415 <![CDATA[VersionNT >= 600]]> 415 <![CDATA[VersionNT >= 600]]>
416 </Custom> 416 </Custom>
417 </InstallExecuteSequence> 417 </InstallExecuteSequence>
418 </Product> 418 </Product>
419 </Wix> 419 </Wix>
OLDNEW
« no previous file with comments | « no previous file | remoting/host/sas_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698